This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/dom/dom-entry.tsx b/src/dom/dom-entry.tsx | |
index 43a920aa9d1ec3457b070aeaa9adcfbca844614d..c39c3bc0d94f85a3c2b9effd9b8179c5caadb7a7 100644 | |
--- a/src/dom/dom-entry.tsx | |
+++ b/src/dom/dom-entry.tsx | |
@@ -57,11 +57,6 @@ export function registerDOMComponent(AppModule: any) { | |
function DOMComponentRoot(props) { | |
// Props listeners | |
const [marshalledProps, setProps] = React.useState(() => { | |
- if (typeof window.$$EXPO_INITIAL_PROPS === 'undefined') { | |
- throw new Error( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
AVPlaybackStatus, | |
AVPlaybackStatusError, | |
AVPlaybackStatusSuccess, | |
Audio, | |
} from 'expo-av' | |
import { Platform } from 'react-native' | |
const FADE_DURATION = 600 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useContext, createContext, useState, useEffect } from 'react' | |
import { Session, User } from '@supabase/supabase-js' | |
import { useSystem } from './system' | |
interface AuthProviderProps { | |
children: React.ReactNode | |
} | |
type AuthContextType = { | |
session: Session | null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import LottieView from 'lottie-react-native' | |
import Animated, { | |
makeMutable, | |
useAnimatedProps, | |
useAnimatedStyle, | |
useFrameCallback, | |
useSharedValue, | |
withTiming, | |
} from 'react-native-reanimated' | |
import { Button, XStack } from 'tamagui' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { UseThemeResult } from '@tamagui/core' | |
import React from 'react' | |
import Animated, { | |
Easing, | |
SharedValue, | |
interpolateColor, | |
useAnimatedStyle, | |
useDerivedValue, | |
useSharedValue, | |
withRepeat, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useWindowDimensions } from 'react-native' | |
import { Gesture } from 'react-native-gesture-handler' | |
import Animated, { | |
Extrapolation, | |
WithSpringConfig, | |
interpolate, | |
scrollTo, | |
useAnimatedRef, | |
useAnimatedScrollHandler, | |
useAnimatedStyle, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { | |
AVPlaybackSource, | |
AVPlaybackStatus, | |
AVPlaybackStatusError, | |
AVPlaybackStatusSuccess, | |
Audio, | |
} from 'expo-av' | |
const FADE_DURATION = 4000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import { usePrevious } from './usePrevious' | |
export type QueryStatus = 'idle' | 'loading' | 'error' | 'success' | |
type QueryClientProviderProps = { | |
children: React.ReactNode | |
client: QueryClient | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const lunr = require('lunr') | |
require('lunr-languages/lunr.stemmer.support')(lunr) | |
require('lunr-languages/lunr.fr')(lunr) | |
require('./lunr.unicodeNormalizer')(lunr) | |
var idx = lunr(function () { | |
this.use(lunr.fr) | |
this.use(lunr.unicodeNormalizer) | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import glamorous from 'glamorous' | |
const Row = glamorous.div(({ extended }) => ({ // THIS IS OK | |
position: 'relative', | |
maxWidth: extended ? 1330 : 1200, | |
margin: '0 auto', | |
boxsizing: 'border-box', | |
display: 'flex', | |
flexDirection: 'row', | |
flexWrap: 'wrap', |
NewerOlder