Skip to content

Commit

Permalink
Fix format & lint
Browse files Browse the repository at this point in the history
  • Loading branch information
devleejb committed Jan 16, 2024
1 parent d8d2eb9 commit 43b92ef
Show file tree
Hide file tree
Showing 2 changed files with 204 additions and 211 deletions.
3 changes: 2 additions & 1 deletion frontend/src/store/supabaseSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export const supabaseSlice = createSlice({
initialState,
reducers: {
setClient: (state, action: PayloadAction<SupabaseClient<Database, "public"> | null>) => {
state.client = action.payload;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
state.client = action.payload as any;
},
},
});
Expand Down
Loading

0 comments on commit 43b92ef

Please sign in to comment.