Skip to content

Commit 016ffda

Browse files
committed
more lint fix
1 parent 4aca4f5 commit 016ffda

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

dotcom-rendering/src/components/StorylineTabContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import {
77
} from '@guardian/source/foundations';
88
import { palette } from '../palette';
99
import type { DCRGroupedTrails } from '../types/front';
10+
import type { Category } from '../types/tagPageAIContent';
1011
import { FlexibleGeneral } from './FlexibleGeneral';
1112
import { FlexibleSpecial } from './FlexibleSpecial';
12-
import { Category } from '../types/tagPageAIContent';
1313

1414
const categoryTitleCss = css`
1515
${textSans20};

dotcom-rendering/src/components/StorylinesSection.importable.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ import {
1212
import { useState } from 'react';
1313
import type { DCRFrontCard, DCRGroupedTrails, TreatType } from '../types/front';
1414
import type { TagPage } from '../types/tagPage';
15-
import { ScrollableCarousel } from './ScrollableCarousel';
16-
import { StorylineSection } from './StorylineSection';
17-
import { StorylineTabContent } from './StorylineTabContent';
18-
import {
15+
import type {
1916
ArticleData,
2017
CategoryContent,
2118
Storyline,
2219
TPSGContent,
2320
} from '../types/tagPageAIContent';
21+
import { ScrollableCarousel } from './ScrollableCarousel';
22+
import { StorylineSection } from './StorylineSection';
23+
import { StorylineTabContent } from './StorylineTabContent';
2424

2525
type StorylinesSectionProps = {
2626
url?: string;

dotcom-rendering/src/frontend/feTagPage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { TPSGContent } from '../types/tagPageAIContent';
21
import type { EditionId } from '../lib/edition';
32
import type { CommercialProperties } from '../types/commercial';
43
import type { FooterType } from '../types/footer';
54
import type { FENavType } from '../types/frontend';
65
import type { FEPagination, FETagType } from '../types/tag';
6+
import type { TPSGContent } from '../types/tagPageAIContent';
77
import type { FEFrontCard, FEFrontConfig } from './feFront';
88

99
export type FETagPage = {

dotcom-rendering/src/types/tagPage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { FooterType } from './footer';
77
import type { DCRFrontCard } from './front';
88
import type { FENavType } from './frontend';
99
import type { FETagType } from './tag';
10-
import { TPSGContent } from './tagPageAIContent';
10+
import type { TPSGContent } from './tagPageAIContent';
1111

1212
/**
1313
* Represents a set of trails grouped by their year, month & optionally day of publication.

dotcom-rendering/src/types/tagPageAIContent.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { DCRGroupedTrails } from './front';
2-
import { MainMedia } from './mainMedia';
1+
import type { DCRGroupedTrails } from './front';
2+
import type { MainMedia } from './mainMedia';
33

44
export type Storyline = {
55
id: string;

0 commit comments

Comments
 (0)