Skip to content

Commit 1b1cb95

Browse files
Fix unused exports for knip check
1 parent ff0c15b commit 1b1cb95

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/api/auth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { isEmpty } from 'es-toolkit/compat'
33

44
import { api } from '@/scripts/api'
55

6-
export interface UserCloudStatus {
6+
interface UserCloudStatus {
77
status: 'active' | 'waitlisted'
88
}
99

@@ -187,7 +187,7 @@ export async function getSurveyCompletedStatus(): Promise<boolean> {
187187
}
188188
}
189189

190-
export async function postSurveyStatus(): Promise<void> {
190+
async function postSurveyStatus(): Promise<void> {
191191
try {
192192
const response = await api.fetchApi(`/settings/${ONBOARDING_SURVEY_KEY}`, {
193193
method: 'POST',

src/services/fileNameMappingService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { api } from '@/scripts/api'
22

3-
export type FileType = 'input' | 'output' | 'temp'
3+
type FileType = 'input' | 'output' | 'temp'
44

55
export interface FileNameMapping {
66
[assetId: string]: string // asset-id -> asset name
77
}
88

9-
export interface CacheEntry {
9+
interface CacheEntry {
1010
data: FileNameMapping
1111
dedupData?: FileNameMapping // Deduplicated mapping with unique display names
1212
timestamp: number

0 commit comments

Comments
 (0)