fix: remove unwanted semicolon (#1545)

This commit is contained in:
SYNO®
2024-12-26 10:28:22 +04:00
committed by GitHub
parent 74382e21e7
commit c588c09b26

View File

@ -4,7 +4,7 @@ import '../styles.css';
export default function App({ Component, pageProps }) {
return (
<PlausibleProvider>
<Component {...pageProps} />;
<Component {...pageProps} />
</PlausibleProvider>
);
}