style: imporve tsconfig (#4358)

This commit is contained in:
LongYinan
2023-09-14 01:47:15 -07:00
committed by GitHub
parent 8fb0620bc8
commit aa3b97b056
3 changed files with 7 additions and 7 deletions

View File

@@ -164,7 +164,7 @@ const pageCollectionBaseAtom = atomWithObservable<Collection[]>(get => {
export const currentCollectionsAtom: CollectionsAtom = atom(
get => get(pageCollectionBaseAtom),
async (get, set, apply) => {
async (get, _, apply) => {
const collections = await get(pageCollectionBaseAtom);
let newCollections: Collection[];
if (typeof apply === 'function') {