Skip to content

Commit 3f70f65

Browse files
authored
fix: flex
1 parent f7bab05 commit 3f70f65

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

client/components/AppWrapper.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const Wrapper = styled(Flex)`
2121
}
2222
`;
2323

24-
const AppWrapper = ({ children }: { children: any }) => {
24+
const AppWrapper = ({ children }: { children: any; }) => {
2525
const isAuthenticated = useStoreState(s => s.auth.isAuthenticated);
2626
const logout = useStoreActions(s => s.auth.logout);
2727
const fetched = useStoreState(s => s.settings.fetched);

client/components/Shortener.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const Shortener = () => {
130130

131131
const title = !link && (
132132
<H1 fontSize={[25, 27, 32]} light>
133-
Skróć swoje link.
133+
Skróć swoje linki.
134134
</H1>
135135
);
136136

@@ -181,7 +181,7 @@ const Shortener = () => {
181181
);
182182

183183
return (
184-
<Col width={800} maxWidth="100%" px={[3]} flex="0 0 auto" mt={4}>
184+
<Col width={800} maxWidth="100%" px={[3]} flex="1 0 auto" mt={4}>
185185
<RowCenterH mb={[4, 48]}>
186186
{title}
187187
{result}

0 commit comments

Comments
 (0)