Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
"devDependencies": {
"@babel/core": "7.19.3",
"@faker-js/faker": "7.6.0",
"@storybook/addon-essentials": "7.0.12",
"@storybook/addon-interactions": "7.0.12",
"@storybook/addon-links": "7.0.12",
"@storybook/nextjs": "7.0.12",
"@storybook/react": "7.0.12",
"@storybook/addon-essentials": "7.0.18",
"@storybook/addon-interactions": "7.0.18",
"@storybook/addon-links": "7.0.18",
"@storybook/nextjs": "7.0.18",
"@storybook/react": "7.0.18",
"@types/node": "18.7.13",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
Expand All @@ -50,7 +50,7 @@
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"storybook": "7.0.12",
"storybook": "7.0.18",
"typescript": "4.8.2"
},
"lint-staged": {
Expand Down
4 changes: 3 additions & 1 deletion src/components/molecules/StaffCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ import Grid from '@mui/material/Unstable_Grid2'
import { type FC } from 'react'
import Image from 'next/image'
import { Colors } from 'src/styles/color'
import { Twitter as TwitterIcon, GitHub as GitHubIcon, Link as LinkIcon } from '@mui/icons-material'
import TwitterIcon from '@mui/icons-material/Twitter'
import GitHubIcon from '@mui/icons-material/GitHub'
import LinkIcon from '@mui/icons-material/Link'
import { type StaffInfo } from 'src/modules/staff'

type Props = StaffInfo
Expand Down
3 changes: 2 additions & 1 deletion src/components/pages/PageSessions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ export const PageSessions: FC = () => {
display: 'flex',
justifyContent: 'center',
backgroundColor: Colors.background.secondary,
padding: { xs: '32px 16px', md: '80px 20px' }
padding: { xs: '32px 16px', md: '80px 20px' },
minHeight: '100vh'
}}
>
<Box maxWidth={'1024px'} width={'100%'}>
Expand Down
Binary file modified src/images/floor-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/pages/sessions/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ import {
sessionizeViewAllSchema
} from 'src/modules/sessionize/schema'
import { Colors } from 'src/styles/color'
import { ArrowBackIosNew as ArrowBackIosNewIcon, Event as EventIcon, Twitter as TwitterIcon } from '@mui/icons-material'
import ArrowBackIosNewIcon from '@mui/icons-material/ArrowBackIosNew'
import EventIcon from '@mui/icons-material/Event'
import TwitterIcon from '@mui/icons-material/Twitter'
import dayjs from 'dayjs'
import { useTranslation } from 'react-i18next'
import NextLink from 'next/link'
Expand Down
Loading