This commit is contained in:
Chris Troutner
2025-01-23 20:48:53 -07:00
parent 4ce02538e1
commit ef0c442f09
+4 -4
View File
@@ -21,10 +21,10 @@ export function UninitializedView (props = {}) {
denyClose={appData.denyClose}
/>
{
props.asyncInitFinished
? <AppBody menuState={100} wallet={appData.wallet} appData={appData} />
: null
}
props.asyncInitFinished
? <AppBody menuState={100} wallet={appData.wallet} appData={appData} />
: null
}
</>
)
}