diff --git a/app/src/view/components/build-order/step-actions.tsx b/app/src/view/components/build-order/step-actions.tsx index 97721cba..561170a3 100644 --- a/app/src/view/components/build-order/step-actions.tsx +++ b/app/src/view/components/build-order/step-actions.tsx @@ -198,5 +198,5 @@ const useStyles = createStylesheet((theme, darkMode) => plusIcon: { color: theme.textNoteColor, }, - }) + } as const) ); diff --git a/app/src/view/components/build-order/step-resource.tsx b/app/src/view/components/build-order/step-resource.tsx index 0ac9ff6f..3b895232 100644 --- a/app/src/view/components/build-order/step-resource.tsx +++ b/app/src/view/components/build-order/step-resource.tsx @@ -42,5 +42,5 @@ const useStyles = createStylesheet((theme, darkMode) => width: 24, height: 24, }, - }) + } as const) ); diff --git a/app/src/view/components/navigation-header/icon-header.tsx b/app/src/view/components/navigation-header/icon-header.tsx index 633cd2f0..9830041d 100644 --- a/app/src/view/components/navigation-header/icon-header.tsx +++ b/app/src/view/components/navigation-header/icon-header.tsx @@ -83,7 +83,7 @@ const useStyles = createStylesheet(theme => StyleSheet.create({ fontSize: 18, fontWeight: '500', }, - }), + } as const), titleSmall: Platform.select({ ios: { @@ -100,7 +100,7 @@ const useStyles = createStylesheet(theme => StyleSheet.create({ fontSize: 18, fontWeight: '500', }, - }), + } as const), subtitle: Platform.select({ ios: { @@ -122,5 +122,5 @@ const useStyles = createStylesheet(theme => StyleSheet.create({ fontWeight: '500', color: theme.textNoteColor, }, - }) + } as const) } as const)); diff --git a/app/src/view/components/tag.tsx b/app/src/view/components/tag.tsx index fefedfac..2507982a 100644 --- a/app/src/view/components/tag.tsx +++ b/app/src/view/components/tag.tsx @@ -47,5 +47,5 @@ const useStyles = createStylesheet((theme, darkMode) => width: 18, height: 18, }, - }) + } as const) ); diff --git a/app/src/view/tech/tech-comp.tsx b/app/src/view/tech/tech-comp.tsx index b9aa6e03..5e8ac285 100644 --- a/app/src/view/tech/tech-comp.tsx +++ b/app/src/view/tech/tech-comp.tsx @@ -67,4 +67,4 @@ const useStyles = createStylesheet((theme, mode) => StyleSheet.create({ paddingLeft: 8, // backgroundColor: 'red', }, -})); +} as const)); diff --git a/app/src/view/tournaments/playoffs/participant.tsx b/app/src/view/tournaments/playoffs/participant.tsx index 75d63017..089158f5 100644 --- a/app/src/view/tournaments/playoffs/participant.tsx +++ b/app/src/view/tournaments/playoffs/participant.tsx @@ -50,5 +50,5 @@ const useStyles = createStylesheet((theme) => participantImage: { resizeMode: 'contain', }, - }) + } as const) ); diff --git a/app/src/view/tournaments/playoffs/player.tsx b/app/src/view/tournaments/playoffs/player.tsx index d7599b6d..7287cf12 100644 --- a/app/src/view/tournaments/playoffs/player.tsx +++ b/app/src/view/tournaments/playoffs/player.tsx @@ -49,5 +49,5 @@ const useStyles = createStylesheet((theme) => flexShrink: 1, fontSize: 12, }, - }) + } as const) ); diff --git a/app/src/view/tournaments/playoffs/popup.tsx b/app/src/view/tournaments/playoffs/popup.tsx index f1f1c433..9b331a9b 100644 --- a/app/src/view/tournaments/playoffs/popup.tsx +++ b/app/src/view/tournaments/playoffs/popup.tsx @@ -203,5 +203,5 @@ const useStyles = createStylesheet((theme) => gap: 2, flexShrink: 1, }, - }) + } as const) ); diff --git a/app/src/view/tournaments/tournament-participant.tsx b/app/src/view/tournaments/tournament-participant.tsx index 448783ea..927c1074 100644 --- a/app/src/view/tournaments/tournament-participant.tsx +++ b/app/src/view/tournaments/tournament-participant.tsx @@ -53,5 +53,5 @@ const useStyles = createStylesheet((theme) => participantImage: { resizeMode: 'contain', }, - }) + } as const) ); diff --git a/app/src/view/tournaments/tournament-prizes.tsx b/app/src/view/tournaments/tournament-prizes.tsx index a0e2afd5..75c931b9 100644 --- a/app/src/view/tournaments/tournament-prizes.tsx +++ b/app/src/view/tournaments/tournament-prizes.tsx @@ -82,5 +82,5 @@ const useStyles = createStylesheet((theme) => width: 22, height: 22, }, - }) + } as const) );