Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix linting & type errors (#819)

authored by

Ansh and committed by
GitHub
189fdb17 7d741094

+12 -12
+1 -1
package.json
··· 66 66 "base64-js": "^1.5.1", 67 67 "email-validator": "^2.0.4", 68 68 "eslint-plugin-react-native-a11y": "^3.3.0", 69 - "expo": "~48.0.15", 69 + "expo": "~48.0.18", 70 70 "expo-application": "~5.1.1", 71 71 "expo-build-properties": "~0.5.1", 72 72 "expo-camera": "~13.2.1",
+2 -2
src/lib/ThemeContext.tsx
··· 78 78 } 79 79 80 80 export interface ThemeProviderProps { 81 - theme?: ColorScheme 81 + theme?: 'light' | 'dark' | 'system' 82 82 } 83 83 84 84 export const ThemeContext = createContext<Theme>(defaultTheme) ··· 96 96 97 97 const value = useMemo( 98 98 () => (colorScheme === 'dark' ? darkTheme : defaultTheme), 99 - [colorScheme, theme], 99 + [colorScheme], 100 100 ) 101 101 102 102 return <ThemeContext.Provider value={value}>{children}</ThemeContext.Provider>
+9 -9
yarn.lock
··· 1733 1733 mv "~2" 1734 1734 safe-json-stringify "~1" 1735 1735 1736 - "@expo/cli@0.7.1": 1737 - version "0.7.1" 1738 - resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.7.1.tgz#8b2e32867452b4dad006759dd438b5f7fc4bc047" 1739 - integrity sha512-414sC4phJA5p96+bgPsyaPNwsepcOsGeErxFXp9OhqwgiQpw+H0uN9mVrvNIKLDHMVWHrW9bAFUEcpoL6VkzbQ== 1736 + "@expo/cli@0.7.2": 1737 + version "0.7.2" 1738 + resolved "https://registry.yarnpkg.com/@expo/cli/-/cli-0.7.2.tgz#22df58e7ee355cdc06d8d5e0b60c7d11c24d13d7" 1739 + integrity sha512-QOooDZ1qy31GsXj2Z5JxpofhZO51loF7NK8QPj5/dHJmG88dQdM4TBA5BWutDN/CA3Dseg+oTCaFiehu3Rn1ew== 1740 1740 dependencies: 1741 1741 "@babel/runtime" "^7.20.0" 1742 1742 "@expo/code-signing-certificates" "0.0.5" ··· 8925 8925 fbemitter "^3.0.0" 8926 8926 resolve-from "^5.0.0" 8927 8927 8928 - expo@~48.0.15: 8929 - version "48.0.17" 8930 - resolved "https://registry.yarnpkg.com/expo/-/expo-48.0.17.tgz#000773a2675e5bf95688a84fbc625c105f8b8af9" 8931 - integrity sha512-5T1CsMUlfI+xFB89GOU+/xtSSbSBBFVTqwgheAU0cQolfbs+YyJCMTKU5vN45N5OK+ym7p/LKPa6DQAxYPF8YQ== 8928 + expo@~48.0.18: 8929 + version "48.0.18" 8930 + resolved "https://registry.yarnpkg.com/expo/-/expo-48.0.18.tgz#5df44c93c2e3ab95dd9f513cd7c9f6a5bf078241" 8931 + integrity sha512-mRsOQC3e+VhUKEaYJlvIDiqwaQtFEJv9JZZ8yRkofsj1y+9WoQFq5WN+w2sKg+aMvTE3ReNzhhwBM7QMVy5FrA== 8932 8932 dependencies: 8933 8933 "@babel/runtime" "^7.20.0" 8934 - "@expo/cli" "0.7.1" 8934 + "@expo/cli" "0.7.2" 8935 8935 "@expo/config" "8.0.2" 8936 8936 "@expo/config-plugins" "6.0.2" 8937 8937 "@expo/vector-icons" "^13.0.0"