Skip to content

Commit cb422cb

Browse files
committed
Format import statements in useLoadSaveFile hook
Reformatted the type import from 'types/savefile.js' for improved readability and consistency in the useLoadSaveFile hook.
1 parent 99bbaf2 commit cb422cb

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

src/hooks/useLoadSaveFile.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
import { useCallback, useEffect, useState } from 'react';
22
import { XMLParser } from 'fast-xml-parser';
33
import { GetDetailedInfo, GetFarmHands } from '@utility/Utility';
4-
import type { gameLocationType, itemsType, itemType, playerType, saveFileType, saveGameType, specialOrderType } from 'types/savefile.js';
4+
import type {
5+
gameLocationType,
6+
itemsType,
7+
itemType,
8+
playerType,
9+
saveFileType,
10+
saveGameType,
11+
specialOrderType
12+
} from 'types/savefile.js';
513
import type { formattedSaveFileType } from 'types/displayDataTypes';
614

715
export interface UseLoadSaveFileResult {

0 commit comments

Comments
 (0)