Skip to content

Commit 206833b

Browse files
committed
Clean up noise
1 parent d6c361f commit 206833b

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

demos/react-native-supabase-group-chat/app.config.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const config: ExpoConfig = {
2222
splash: {
2323
image: './assets/splash.png',
2424
resizeMode: 'contain',
25-
backgroundColor: '#ffffff'
25+
backgroundColor: '#cb62ff'
2626
},
2727
updates: {
2828
url: `https://u.expo.dev/${projectId}`
@@ -34,10 +34,13 @@ const config: ExpoConfig = {
3434
android: {
3535
adaptiveIcon: {
3636
foregroundImage: './assets/adaptive-icon.png',
37-
backgroundColor: '#ffffff'
37+
backgroundColor: '#cb62ff'
3838
},
3939
package: 'com.powersync.powerchat'
4040
},
41+
web: {
42+
bundler: 'metro',
43+
},
4144
extra: {
4245
eas: {
4346
projectId

demos/react-native-supabase-group-chat/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"ios": "expo run:ios",
1111
"web": "expo start --web --clear",
1212
"doc": "pnpx expo-doctor@latest",
13-
"format": "prettier --write .",
1413
"prebuild": "expo prebuild --platform ios --clean --no-install",
1514
"build:simulator": "pnpx eas-cli build --profile simulator --platform ios --local",
1615
"build:development": "pnpx eas-cli build --profile development --platform ios --local",

demos/react-native-supabase-group-chat/src/components/list/SwipeableRow.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ export function SwipeableRow({
8080

8181
function close() {
8282
ref.current?.close();
83-
ref.current;
8483
}
8584

8685
return rightActions ? (

demos/react-native-supabase-group-chat/src/tamagui.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { createInterFont } from '@tamagui/font-inter';
44
import { themes, tokens } from '@tamagui/themes';
55
import { config } from '@/lib/config';
66

7-
const heading = createInterFont();
8-
const body = createInterFont();
7+
const headingFont = createInterFont();
8+
const bodyFont = createInterFont();
99

1010
export const appConfig = createTamagui({
1111
themes,
@@ -21,8 +21,8 @@ export const appConfig = createTamagui({
2121
},
2222
shorthands,
2323
fonts: {
24-
heading,
25-
body
24+
heading: headingFont,
25+
body: bodyFont
2626
}
2727
});
2828

0 commit comments

Comments
 (0)