Skip to content

Commit

Permalink
fix: semantic errors related to import json (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
ttys026 authored Dec 28, 2024
1 parent 2242c68 commit 06fc164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hakit/server/routes/download-version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { APP_DIRECTORY } from '../constants.js';
import { downloadFile, listFilesInFolder } from '../google/drive/index.js';
import { ensureDirectoryExists, translateError } from '../helpers/index.js';
import { loadFile } from '../helpers/read-file.js';
import addonPackage from '../../package.json' assert { type: 'json' };
import addonPackage from '../../package.json' with { type: 'json' };

export async function downloadVersion(_req: Request, res: Response) {
// TODO - change download version to download a specific version
Expand Down

0 comments on commit 06fc164

Please sign in to comment.