From 6e100bcd774e9c89d32d4c358f36cf4b9eba3cbd Mon Sep 17 00:00:00 2001 From: satoren Date: Thu, 2 Nov 2023 09:40:25 +0900 Subject: [PATCH] format --- src/vanilla/utils/unwrap.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/vanilla/utils/unwrap.ts b/src/vanilla/utils/unwrap.ts index 754e633825..d6a6351b93 100644 --- a/src/vanilla/utils/unwrap.ts +++ b/src/vanilla/utils/unwrap.ts @@ -95,7 +95,8 @@ export function unwrap( return atom( (get) => { const state = get(promiseAndValueAtom) - if ('f' in state) { // is pending + if ('f' in state) { + // is pending return state.f } return state.v