Skip to content

Commit

Permalink
fix: add missing import for "use" (#333)
Browse files Browse the repository at this point in the history
  • Loading branch information
ApacheEx authored Jan 9, 2024
1 parent 470be72 commit 59edcdc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { BaseLocale, ImportedLocales } from 'international-types';
import { notFound } from 'next/navigation';
import type { Context, ReactNode } from 'react';
import React, { Suspense, useMemo } from 'react';
import React, { Suspense, use, useMemo } from 'react';
import { flattenLocale } from '../../common/flatten-locale';
import { error } from '../../helpers/log';
import type { LocaleContext } from '../../types';
Expand Down

0 comments on commit 59edcdc

Please sign in to comment.