Skip to content

Commit 2bd4414

Browse files
committed
Fix lint issues regarding type import
1 parent 87e75a6 commit 2bd4414

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

app/src/components/domain/ActiveOperationMap/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import type {
5353
} from '#utils/restRequest';
5454
import { useRequest } from '#utils/restRequest';
5555

56-
import GlobalMap, { AdminZeroFeatureProperties } from '../GlobalMap';
56+
import GlobalMap, { type AdminZeroFeatureProperties } from '../GlobalMap';
5757
import {
5858
APPEAL_TYPE_DREF,
5959
APPEAL_TYPE_EAP,

app/src/components/domain/GlobalMap/index.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ import {
66
import { LanguageContext } from '@ifrc-go/ui/contexts';
77
import { MapLayer } from '@togglecorp/re-map';
88
import {
9-
Expression,
10-
FillLayer,
11-
FillPaint,
12-
LineLayer,
13-
LngLatLike,
14-
MapboxGeoJSONFeature,
15-
SymbolLayer,
9+
type Expression,
10+
type FillLayer,
11+
type FillPaint,
12+
type LineLayer,
13+
type LngLatLike,
14+
type MapboxGeoJSONFeature,
15+
type SymbolLayer,
1616
} from 'mapbox-gl';
1717

1818
import BaseMap, { type Props as BaseMapProps } from '#components/domain/BaseMap';
1919
import {
2020
COLOR_BLACK,
21-
CountryRecordTypeEnum,
21+
type CountryRecordTypeEnum,
2222
} from '#utils/constants';
2323

2424
export interface AdminZeroFeatureProperties {

0 commit comments

Comments
 (0)