From f3940f745639349ea73eeb0de47a8b15c30eb81b Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Tue, 10 Sep 2024 15:00:28 -0700 Subject: [PATCH] remove unused atom --- frontend/app/view/webview/webview.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/app/view/webview/webview.tsx b/frontend/app/view/webview/webview.tsx index 3b5ecbb31..a8ebc17ed 100644 --- a/frontend/app/view/webview/webview.tsx +++ b/frontend/app/view/webview/webview.tsx @@ -23,7 +23,6 @@ export class WebViewModel implements ViewModel { viewName: jotai.Atom; viewText: jotai.Atom; url: jotai.PrimitiveAtom; - urlInput: jotai.PrimitiveAtom; urlInputFocused: jotai.PrimitiveAtom; isLoading: jotai.PrimitiveAtom; urlWrapperClassName: jotai.PrimitiveAtom; @@ -39,7 +38,6 @@ export class WebViewModel implements ViewModel { this.blockAtom = WOS.getWaveObjectAtom(`block:${blockId}`); this.url = jotai.atom(); - this.urlInput = jotai.atom(""); this.urlWrapperClassName = jotai.atom(""); this.urlInputFocused = jotai.atom(false); this.isLoading = jotai.atom(false);