File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ const PostsUtils = () => {
49
49
} , [ resetTestPosts ] ) ;
50
50
51
51
return (
52
- < Flex gap = { "4" } >
52
+ < Flex gap = { "4" } wrap = { "wrap" } >
53
53
< Tooltip hasArrow label = { t ( "Create Post" ) } >
54
54
< Button leftIcon = { < TbPlus /> } onClick = { handleCreatePost } >
55
55
{ t ( "Post" ) }
Original file line number Diff line number Diff line change 1
1
import { useCreateTestUsers , useCreateUser , useResetTestUsers } from "@/apis" ;
2
- import { ApiRoutes } from "@/constants" ;
2
+ import { ApiRoutes , styles } from "@/constants" ;
3
3
import { useQueryKeyParams } from "@/hooks" ;
4
4
import { useModalStore } from "@/stores" ;
5
5
import { getRandomPhoneNumber , getRandomString , toUrl } from "@/utils" ;
@@ -44,7 +44,7 @@ const UsersUtils = () => {
44
44
} , [ resetTestUsers ] ) ;
45
45
46
46
return (
47
- < Flex gap = { "4" } >
47
+ < Flex gap = { "4" } wrap = { "wrap" } >
48
48
< Tooltip hasArrow label = { t ( "Create User" ) } >
49
49
< Button leftIcon = { < TbPlus /> } onClick = { handleCreateUser } >
50
50
{ t ( "User" ) }
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ const PostsAllPage = () => {
37
37
< ResponsiveLayout >
38
38
< Flex direction = { "column" } gap = { "4" } h = { "100%" } >
39
39
< PostUtils />
40
- < Flex justifyContent = { "space-between" } >
40
+ < Flex justifyContent = { "space-between" } gap = { "4" } wrap = { "wrap" } >
41
41
< Search
42
42
onSubmit = { ( search ) =>
43
43
push ( {
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ const UsersPage = () => {
37
37
< ResponsiveLayout >
38
38
< Flex direction = { "column" } gap = { "4" } h = { "100%" } >
39
39
< UserUtils />
40
- < Flex justifyContent = { "space-between" } >
40
+ < Flex justifyContent = { "space-between" } gap = { "4" } wrap = { "wrap" } >
41
41
< Search
42
42
onSubmit = { ( search ) =>
43
43
push ( {
You can’t perform that action at this time.
0 commit comments