File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 2
2
@tailwind components;
3
3
@tailwind utilities;
4
4
5
-
6
5
.userInvite {
7
6
display : flex;
8
7
justify-content : center;
14
13
}
15
14
.userInvite svg {
16
15
margin : auto;
16
+ }
17
17
18
18
@media (min-width : 1024px ) {
19
19
.drawer-toggle {
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ export type Database = {
10
10
end_date : string ;
11
11
group_id : string ;
12
12
id : number ;
13
+ memo : string | null ;
13
14
owner_id : string ;
14
15
start_date : string ;
15
16
title : string ;
@@ -20,6 +21,7 @@ export type Database = {
20
21
end_date : string ;
21
22
group_id ?: string ;
22
23
id ?: number ;
24
+ memo ?: string | null ;
23
25
owner_id ?: string ;
24
26
start_date : string ;
25
27
title : string ;
@@ -30,6 +32,7 @@ export type Database = {
30
32
end_date ?: string ;
31
33
group_id ?: string ;
32
34
id ?: number ;
35
+ memo ?: string | null ;
33
36
owner_id ?: string ;
34
37
start_date ?: string ;
35
38
title ?: string ;
@@ -92,8 +95,8 @@ export type Database = {
92
95
color : string | null ;
93
96
created_at : string ;
94
97
end_date : string ;
95
- exclude_time_end : string ;
96
- exclude_time_start : string ;
98
+ exclude_time_end : string | null ;
99
+ exclude_time_start : string | null ;
97
100
id : number ;
98
101
name : string ;
99
102
open : boolean ;
@@ -104,8 +107,8 @@ export type Database = {
104
107
color ?: string | null ;
105
108
created_at ?: string ;
106
109
end_date : string ;
107
- exclude_time_end : string ;
108
- exclude_time_start : string ;
110
+ exclude_time_end ? : string | null ;
111
+ exclude_time_start ? : string | null ;
109
112
id ?: number ;
110
113
name : string ;
111
114
open : boolean ;
@@ -116,8 +119,8 @@ export type Database = {
116
119
color ?: string | null ;
117
120
created_at ?: string ;
118
121
end_date ?: string ;
119
- exclude_time_end ?: string ;
120
- exclude_time_start ?: string ;
122
+ exclude_time_end ?: string | null ;
123
+ exclude_time_start ?: string | null ;
121
124
id ?: number ;
122
125
name ?: string ;
123
126
open ?: boolean ;
You can’t perform that action at this time.
0 commit comments