Skip to content

Commit

Permalink
fix: Fixes import order error in some instances.
Browse files Browse the repository at this point in the history
closes #114
  • Loading branch information
towfiqi committed Nov 2, 2023
1 parent 4748ffc commit be80ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/api/settings.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { writeFile, readFile } from 'fs/promises';
import type { NextApiRequest, NextApiResponse } from 'next';
import Cryptr from 'cryptr';
import getConfig from 'next/config';
import { writeFile, readFile } from 'fs/promises';
import verifyUser from '../../utils/verifyUser';
import allScrapers from '../../scrapers/index';

Expand Down

0 comments on commit be80ed7

Please sign in to comment.