Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

fix: some small inconsistencies #1198

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/main/ItemsToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const ItemsToolbar = ({
return (
<>
<Stack direction="row" justifyContent="space-between" spacing={1}>
<Typography variant="h4" sx={{ wordWrap: 'break-word' }}>
<Typography variant="h2" component="h1" sx={{ wordWrap: 'break-word' }}>
{title}
</Typography>
<Stack
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/PublishedItemsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const PublishedItemsLoadableContent = (): JSX.Element | null => {
<Helmet>
<title>{translateBuilder(BUILDER.PUBLISHED_ITEMS_TITLE)}</title>
</Helmet>
<Box mx={2}>
<Box m={2}>
<ItemHeader showNavigation={false} />
<Items
id={PUBLISHED_ITEMS_ID}
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/RecycledItemsScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const RecycleBinLoadableContent = (): JSX.Element | null => {
<Helmet>
<title>{translateBuilder(BUILDER.RECYCLE_BIN_TITLE)}</title>
</Helmet>
<Box id={RECYCLED_ITEMS_ROOT_CONTAINER} mx={2}>
<Box id={RECYCLED_ITEMS_ROOT_CONTAINER} m={2}>
<ItemHeader showNavigation={false} />
<Items
id={RECYCLED_ITEMS_ID}
Expand Down