Skip to content

Commit 39d6908

Browse files
committed
subtitle typo
1 parent f508b98 commit 39d6908

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/app/components/ContentBox.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Box, Typography, type SxProps } from '@mui/material';
33

44
export interface ContentBoxProps {
55
title: string;
6-
subtile?: React.ReactNode;
6+
subtitle?: React.ReactNode;
77
width?: Record<string, string>;
88
outlineColor: string;
99
padding?: Partial<SxProps>;
@@ -46,9 +46,9 @@ export const ContentBox = (
4646
{props.action != null && props.action}
4747
</Typography>
4848
)}
49-
{props.subtile != null && (
49+
{props.subtitle != null && (
5050
<Typography variant='subtitle1' sx={{ mb: 2 }}>
51-
{props.subtile}
51+
{props.subtitle}
5252
</Typography>
5353
)}
5454
{props.children}

src/app/screens/Feed/FeedView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ export default async function FeedView({
425425
{isMobilityDatabaseAdmin && (
426426
<ContentBox
427427
title={'MobilityDatabase Admin Tools'}
428-
subtile={
428+
subtitle={
429429
<>
430430
This section is only visible to Mobility Data employees with an{' '}
431431
<code>@mobilitydata.org</code> email address. It contains tools

0 commit comments

Comments
 (0)