Address lint warnings (#10188)
This commit is contained in:
+2
-2
@@ -215,11 +215,11 @@ function InnerApp() {
|
||||
}
|
||||
|
||||
function App() {
|
||||
const [isReady, setReady] = useState(false)
|
||||
const [isReady, setIsReady] = useState(false)
|
||||
|
||||
useEffect(() => {
|
||||
void Promise.all([initPersistedState(), Geo.resolve(), setupDeviceId]).then(
|
||||
() => setReady(true),
|
||||
() => setIsReady(true),
|
||||
)
|
||||
}, [])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user