Skip to content

Commit

Permalink
frontend: Fixing Default for UserInfo component (#2795)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdslaugh committed Sep 19, 2023
1 parent 0e5812c commit 99d4e52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/packages/core/src/AppLayout/user.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export interface UserInformationProps {
const UserInformation: React.FC<UserInformationProps> = ({
data,
user = userId(),
children = null,
children = [],
}) => {
const userInitials = user.slice(0, 2).toUpperCase();
const [open, setOpen] = React.useState(false);
Expand Down

0 comments on commit 99d4e52

Please sign in to comment.