File tree Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change
1
+ import { Database } from '@/supabase/supabse.types' ;
2
+
3
+ export const groupScheduleFixture : Database [ 'public' ] [ 'Tables' ] [ 'group_schedules' ] [ 'Row' ] [ ] = [
4
+ {
5
+ id : 1 ,
6
+ created_at : '2024-05-10 06:22:44.084046+00' ,
7
+ title : 'Test' ,
8
+ description : 'Test용 모임 일정' ,
9
+ start_date : '2024-05-17 06:21:56+00' ,
10
+ end_date : '2024-05-18 06:22:02+00' ,
11
+ owner_id : '1d7a5662-922e-4167-932d-4dda46f67ef2' ,
12
+ memo : 'Test용으로 생성된 모임 일정 입니다.' ,
13
+ group_id : '1' ,
14
+ } ,
15
+ ] ;
Original file line number Diff line number Diff line change 1
1
import { QueryClient , QueryClientProvider } from '@tanstack/react-query' ;
2
2
import { ReactNode } from 'react' ;
3
- import { BrowserRouter } from 'react-router-dom' ;
4
3
5
4
const queryClient = new QueryClient ( ) ;
6
5
7
6
export default ( { children } : { children : ReactNode } ) => (
8
- < BrowserRouter >
9
- < QueryClientProvider client = { queryClient } > { children } </ QueryClientProvider >
10
- </ BrowserRouter >
7
+ < QueryClientProvider client = { queryClient } > { children } </ QueryClientProvider >
11
8
) ;
You can’t perform that action at this time.
0 commit comments