Skip to content

Commit

Permalink
fix: name should be wrapped in brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
kahosan committed Aug 3, 2023
1 parent b18aea8 commit 2d3132e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/quick-start/official-utils/code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const useCommitCount = () => {
// Rerenders when nameAtom changes.
const DisplayName = () => {
const name = useAtom(nameAtom);
const [name] = useAtom(nameAtom);
const n = useCommitCount();
return (
<div>
Expand Down

0 comments on commit 2d3132e

Please sign in to comment.