Skip to content

Commit

Permalink
fix: android mal logins
Browse files Browse the repository at this point in the history
  • Loading branch information
NoCrypt committed Sep 12, 2024
1 parent 97012f8 commit 89799bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion capacitor/capacitor.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const config = {
},
plugins: {
SplashScreen: { launchShowDuration: 0 },
CapacitorHttp: { enabled: false },
CapacitorHttp: { enabled: true },
CapacitorNodeJS: { nodeDir: 'nodejs' }
},
server: {
Expand Down
2 changes: 1 addition & 1 deletion common/components/Profiles.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { click } from '@/modules/click.js'
import { toast } from 'svelte-sonner'
import { LogOut, Plus } from 'lucide-svelte'
import IPC from "@/modules/ipc"
import IPC from "@/modules/ipc.js"
export const profileView = writable(false)
const profileAdd = writable(false)
Expand Down
2 changes: 1 addition & 1 deletion common/views/Settings/Settings.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
</script>

<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='px-20 py-15 font-size-24 font-weight-semi-bold'>Settings</div>
{#each Object.values(groups) as group}
Expand Down

0 comments on commit 89799bf

Please sign in to comment.