Skip to content

Commit

Permalink
fix: 자동완성 체크 해제시 발생하는 오류 픽스
Browse files Browse the repository at this point in the history
  • Loading branch information
2jun0 committed Mar 12, 2024
1 parent b6dd1a3 commit dd19f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/daily/[page]/autocomplete.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function AutoCompleteGameName({onChangeGuessName}: {onChangeGuess
};
});

onChangeGuessName(key?.toString());
onChangeGuessName(key ? key.toString() : "");
};

// Specify how each of the Autocomplete values should change when the input
Expand Down

0 comments on commit dd19f0a

Please sign in to comment.