Skip to content

Commit

Permalink
fix: delete unnecessary semicolon (#2827)
Browse files Browse the repository at this point in the history
Signed-off-by: Yosuke Nakada <[email protected]>
  • Loading branch information
ysknkd authored Dec 10, 2024
1 parent 62cfecb commit 22aa097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function MyApp({ Component, pageProps }) {

return (
<Provider store={store}>
<Component {...pageProps} />;
<Component {...pageProps} />
</Provider>
);
}
Expand Down

0 comments on commit 22aa097

Please sign in to comment.