We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5ebbc9 commit 57e542aCopy full SHA for 57e542a
1 file changed
src/frontend/src/app/AppContextUser.tsx
@@ -16,7 +16,7 @@ import ErrorPage from '../pages/ErrorPage';
16
17
export const UserContext = createContext<AuthenticatedUser | undefined>(undefined);
18
19
-const AppContextUser: React.FC = (props) => {
+const AppContextUser: React.FC<{ children: React.ReactNode }> = (props) => {
20
const auth = useAuth();
21
const clarity = useClarity();
22
const { data: teams, isLoading: teamsIsLoading, isError: teamsIsError, error: teamsError } = useGetUsersTeams();
0 commit comments