From 609059b78dbb64221995d8f251d6f3090ed6a5bd Mon Sep 17 00:00:00 2001 From: talksik Date: Sat, 11 Jun 2022 11:11:13 -0500 Subject: [PATCH] Update types.ts --- packages/desktop/src/util/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/desktop/src/util/types.ts b/packages/desktop/src/util/types.ts index 97922da..c816425 100644 --- a/packages/desktop/src/util/types.ts +++ b/packages/desktop/src/util/types.ts @@ -9,7 +9,7 @@ export type ConversationMap = { // allows client side to have this pushed up in the list and can uncheck it once user is done with this // if action is take, normal ordering should take place with database upserts - temporaryInboxTop: boolean; + temporaryInboxTop?: boolean; }; };