Skip to content

Commit 4ba00e7

Browse files
committed
Address PR review comment and fix lint
1 parent cabce56 commit 4ba00e7

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

dotcom-rendering/src/layouts/GalleryLayout.tsx

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
import { css } from '@emotion/react';
2-
import {
3-
between,
4-
from,
5-
palette as sourcePalette,
6-
} from '@guardian/source/foundations';
2+
import { from, palette as sourcePalette } from '@guardian/source/foundations';
73
import { AppsFooter } from '../components/AppsFooter.importable';
84
import { ArticleHeadline } from '../components/ArticleHeadline';
95
import { ArticleMetaApps } from '../components/ArticleMeta.apps';
106
import { ArticleMeta } from '../components/ArticleMeta.web';
117
import { ArticleTitle } from '../components/ArticleTitle';
12-
import { Footer } from '../components/Footer';
138
import { Caption } from '../components/Caption';
9+
import { Footer } from '../components/Footer';
1410
import { GalleryImage } from '../components/GalleryImage';
1511
import { Island } from '../components/Island';
1612
import { MainMediaGallery } from '../components/MainMediaGallery';
@@ -175,11 +171,6 @@ export const GalleryLayout = (props: WebProps | AppProps) => {
175171
shortUrlId={frontendData.config.shortUrlId}
176172
/>
177173
) : null}
178-
<div
179-
css={[grid.between('centre-column-start', 'grid-end')]}
180-
>
181-
Meta
182-
</div>
183174
</header>
184175
{gallery.images.map((element, idx) => (
185176
<GalleryImage

0 commit comments

Comments
 (0)