Fix syntax error by removing extraneous semicolon

Removed an unnecessary semicolon within the JSX structure to adhere to proper syntax rules. This change prevents potential rendering issues and maintains consistency with the codebase style.
This commit is contained in:
2025-03-14 03:55:46 +01:00
parent c580effb52
commit 0fa298ef4b

View File

@@ -5,7 +5,7 @@ import { EventThemesProvider } from "@/context/event-theme-context";
export function DataProviders({ children }: { children: React.ReactNode }) {
return (
<EventThemesProvider>
<EventsProvider>{children}</EventsProvider>;
<EventsProvider>{children}</EventsProvider>
</EventThemesProvider>
);
}