mirror of
https://github.com/NoCrypt/migu.git
synced 2026-03-11 17:45:32 +00:00
fix: android mal logins
This commit is contained in:
parent
97012f8444
commit
89799bffe5
3 changed files with 3 additions and 3 deletions
|
|
@ -14,7 +14,7 @@ const config = {
|
||||||
},
|
},
|
||||||
plugins: {
|
plugins: {
|
||||||
SplashScreen: { launchShowDuration: 0 },
|
SplashScreen: { launchShowDuration: 0 },
|
||||||
CapacitorHttp: { enabled: false },
|
CapacitorHttp: { enabled: true },
|
||||||
CapacitorNodeJS: { nodeDir: 'nodejs' }
|
CapacitorNodeJS: { nodeDir: 'nodejs' }
|
||||||
},
|
},
|
||||||
server: {
|
server: {
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@
|
||||||
import { click } from '@/modules/click.js'
|
import { click } from '@/modules/click.js'
|
||||||
import { toast } from 'svelte-sonner'
|
import { toast } from 'svelte-sonner'
|
||||||
import { LogOut, Plus } from 'lucide-svelte'
|
import { LogOut, Plus } from 'lucide-svelte'
|
||||||
import IPC from "@/modules/ipc"
|
import IPC from "@/modules/ipc.js"
|
||||||
|
|
||||||
export const profileView = writable(false)
|
export const profileView = writable(false)
|
||||||
const profileAdd = writable(false)
|
const profileAdd = writable(false)
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,7 @@
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Tabs>
|
<Tabs>
|
||||||
<div class='d-flex w-full h-full position-relative settings root flex-md-row flex-column overflow-y-auto overflow-y-md-hidden' use:smoothScroll>
|
<div class='d-flex w-full h-full position-relative settings root flex-md-row flex-column overflow-y-auto overflow-y-md-hidden' style="padding-top: var(--safe-area-top)" use:smoothScroll>
|
||||||
<div class='d-flex flex-column flex-row h-full w-md-300 bg-dark position-relative px-20 px-md-0 flex-basis-0-md-custom'>
|
<div class='d-flex flex-column flex-row h-full w-md-300 bg-dark position-relative px-20 px-md-0 flex-basis-0-md-custom'>
|
||||||
<div class='px-20 py-15 font-size-24 font-weight-semi-bold'>Settings</div>
|
<div class='px-20 py-15 font-size-24 font-weight-semi-bold'>Settings</div>
|
||||||
{#each Object.values(groups) as group}
|
{#each Object.values(groups) as group}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue