File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ import BannerNotification from "../BannerNotification"
3
3
import Translation from "../Translation"
4
4
5
5
import { TranslationKey } from "../../utils/translations"
6
- import { Flex , Text } from "@chakra-ui/react"
6
+ import { Center , Text } from "@chakra-ui/react"
7
7
8
8
export interface IProps {
9
9
translationString : TranslationKey
10
10
}
11
11
12
12
const PostMergeBanner : React . FC < IProps > = ( { translationString } ) => (
13
- < Flex
13
+ < Center
14
14
as = { BannerNotification }
15
15
shouldShow = { true }
16
16
zIndex = { 1 }
@@ -25,7 +25,7 @@ const PostMergeBanner: React.FC<IProps> = ({ translationString }) => (
25
25
< Text maxW = "100ch" m = { 0 } p = { 0 } >
26
26
< Translation id = { translationString } />
27
27
</ Text >
28
- </ Flex >
28
+ </ Center >
29
29
)
30
30
31
31
export default PostMergeBanner
You can’t perform that action at this time.
0 commit comments