Skip to content

Commit

Permalink
Merge pull request #195 from boostcampwm-2024/prototype/final
Browse files Browse the repository at this point in the history
🐞 Fix(client): title undefined 문제 해결
  • Loading branch information
SeoGeonhyuk authored Dec 5, 2024
2 parents d1dc49c + efc1658 commit 908b5c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/client/src/components/SaveDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default ({ open, onClose }: Props) => {
<DialogTitle>Save</DialogTitle>
<DialogContent
sx={{
minWidth: '600px',
minWidth: '300px',
}}
>
<Stack spacing={2}>
Expand All @@ -87,7 +87,7 @@ export default ({ open, onClose }: Props) => {
<TextField
margin="dense"
defaultValue={
graphData.title ? graphData.title : ''
graphData?.title ? graphData.title : ''
}
id="title"
name="title"
Expand Down

0 comments on commit 908b5c7

Please sign in to comment.