Skip to content

Commit 57e542a

Browse files
fix a tiny error
1 parent b5ebbc9 commit 57e542a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/frontend/src/app/AppContextUser.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import ErrorPage from '../pages/ErrorPage';
1616

1717
export const UserContext = createContext<AuthenticatedUser | undefined>(undefined);
1818

19-
const AppContextUser: React.FC = (props) => {
19+
const AppContextUser: React.FC<{ children: React.ReactNode }> = (props) => {
2020
const auth = useAuth();
2121
const clarity = useClarity();
2222
const { data: teams, isLoading: teamsIsLoading, isError: teamsIsError, error: teamsError } = useGetUsersTeams();

0 commit comments

Comments
 (0)