Skip to content

Commit

Permalink
chore(release): 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
casperiv0 committed Jun 12, 2024
1 parent 8206b8e commit 21591b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integrations/sync/nui-dev/src/components/next-intl.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { NextIntlProvider } from "next-intl";
import { IntlProvider } from "next-intl";

const MESSAGES_REQUIRED_IN_COMPONENTS = {
Common: {
Expand Down Expand Up @@ -30,8 +30,8 @@ interface Props {

export function NextIntlWrapper(props: Props) {
return (
<NextIntlProvider messages={MESSAGES_REQUIRED_IN_COMPONENTS} locale="en">
<IntlProvider messages={MESSAGES_REQUIRED_IN_COMPONENTS} locale="en">
{props.children}
</NextIntlProvider>
</IntlProvider>
);
}

0 comments on commit 21591b7

Please sign in to comment.