Skip to content

Commit

Permalink
added semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
cmhhelgeson committed Jan 4, 2024
1 parent 1f8b4e4 commit 08d2c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const MainLayout: React.FunctionComponent<AppProps> = ({
useEffect(() => {
const resizeListener = () => {
if (window.innerWidth > 768) {
panelRef.current.setAttribute('data-expanded', 'false')
panelRef.current.setAttribute('data-expanded', 'false');
}
};
window.addEventListener('resize', resizeListener);
Expand Down

0 comments on commit 08d2c9f

Please sign in to comment.