Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

Commit

Permalink
fixed credits offest, removed user log
Browse files Browse the repository at this point in the history
  • Loading branch information
phasenull committed Sep 26, 2023
1 parent 577baf6 commit 4459633
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/pages/Auth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export function AuthPage(props) {
const logged_in_user = await FKart.GetUser()
if (!logged_in_user) return
set_user(logged_in_user)
console.log("LOGGED_IN_USER", JSON.stringify(logged_in_user?.username))
const language = await FKart.GET_DATA("language")
set_language(language)
}
Expand All @@ -42,11 +41,11 @@ export function AuthPage(props) {
return (
<Surface className="h-full w-full" mode="flat" elevation={1}>
{/* TITLE & IMAGE */}
<Image source={require("../assets/media/tramvay.png")} className="absolute h-96 w-screen justify-center top-5" />
<Image source={require("../assets/media/tramvay.png")} className="absolute h-96 w-screen justify-center" />
<Text className="text-5xl absolute top-20 font-bold text-center self-center text-white">{get_app_name()}</Text>

{/* CREDITS */}
<TitleScreenCredits className="self-center" />
<TitleScreenCredits className="self-center top-40" />

{/*
LOG IN / SIGN UP FORM LOADER
Expand Down

0 comments on commit 4459633

Please sign in to comment.