diff options
Diffstat (limited to 'src/components/moments')
| -rw-r--r-- | src/components/moments/Moment.tsx | 2 | ||||
| -rw-r--r-- | src/components/moments/MomentTile.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/moments/Moment.tsx b/src/components/moments/Moment.tsx index e928f7e0..940b519c 100644 --- a/src/components/moments/Moment.tsx +++ b/src/components/moments/Moment.tsx @@ -15,7 +15,7 @@ import {MomentType, ScreenType} from 'src/types'; interface MomentProps { title: string; images: MomentType[] | undefined; - userXId: string; + userXId: string | undefined; screenType: ScreenType; } diff --git a/src/components/moments/MomentTile.tsx b/src/components/moments/MomentTile.tsx index 05ccfa15..16e91c82 100644 --- a/src/components/moments/MomentTile.tsx +++ b/src/components/moments/MomentTile.tsx @@ -5,7 +5,7 @@ import {MomentType, ScreenType} from 'src/types'; interface MomentTileProps { moment: MomentType; - userXId: string; + userXId: string | undefined; screenType: ScreenType; } const MomentTile: React.FC<MomentTileProps> = ({ |
