File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed
containers/MainBody/ServerList Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ const StaticModal = (props: IProps) => {
2222 < Pressable
2323 style = { {
2424 height : "100%" ,
25- width : "100%" , // @ts -ignore
25+ width : "100%" ,
26+ // @ts -ignore
2627 cursor : "default" ,
2728 } }
2829 onPress = { ( ) => props . onDismiss ( ) }
Original file line number Diff line number Diff line change @@ -174,15 +174,12 @@ const SearchBar = memo<SearchBarProps>(({ onChange }) => {
174174 />
175175 { showFiltersBadge ? (
176176 < div
177- // @ts -ignore
178- style = { [
179- styles . badgeContainer ,
180- {
181- filter : `drop-shadow(0 0 5px ${ theme . primary } ${
182- themeType === "dark" ? "CC" : "FF"
183- } )`,
184- } ,
185- ] }
177+ style = { {
178+ ...styles . badgeContainer ,
179+ filter : `drop-shadow(0 0 5px ${ theme . primary } ${
180+ themeType === "dark" ? "CC" : "FF"
181+ } )`,
182+ } }
186183 >
187184 < View style = { [ styles . badge , { backgroundColor : theme . primary } ] } />
188185 </ div >
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ export default defineConfig({
7878 // https://tauri.studio/v1/api/config#buildconfig.beforedevcommand
7979 envPrefix : [ "VITE_" , "TAURI_" ] ,
8080 build : {
81- chunkSizeWarningLimit : 1000 ,
81+ chunkSizeWarningLimit : 400 ,
8282 minify : ! process . env . TAURI_DEBUG ? "esbuild" : false ,
8383 sourcemap : ! ! process . env . TAURI_DEBUG ,
8484 } ,
You can’t perform that action at this time.
0 commit comments