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

@@ -20,7 +20,7 @@ const baseAtom = atom<Collection[]>([]);
const mockAtom: CollectionsAtom = atom(
get => get(baseAtom),
async (get, set, update) => {
async (_, set, update) => {
set(baseAtom, update);
}
);