From 041bfa22a99d8d6b4b17ad36c983e9e2b2444918 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 25 Jul 2022 23:08:24 -0500 Subject: Implement Web versions of the bottom sheet, toast, and progress circle --- src/state/lib/api.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/state/lib/api.ts') diff --git a/src/state/lib/api.ts b/src/state/lib/api.ts index bb3ef5d1a..df0047991 100644 --- a/src/state/lib/api.ts +++ b/src/state/lib/api.ts @@ -97,7 +97,7 @@ export async function unrepost(adx: AdxClient, user: string, uri: string) { return numDels > 0 } -type WherePred = (record: GetRecordResponseValidated) => Boolean +type WherePred = (_record: GetRecordResponseValidated) => Boolean async function deleteWhere( coll: AdxRepoCollectionClient, schema: SchemaOpt, @@ -115,7 +115,7 @@ async function deleteWhere( return toDelete.length } -type IterateAllCb = (record: GetRecordResponseValidated) => void +type IterateAllCb = (_record: GetRecordResponseValidated) => void async function iterateAll( coll: AdxRepoCollectionClient, schema: SchemaOpt, -- cgit 1.4.1