Skip to content

Commit

Permalink
small ui changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen-Gordon committed Mar 31, 2024
1 parent d0d8e1a commit a12a30c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions src/app/components/AuthPage/AuthPage.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client'
import { useRouter } from "next/navigation";
import { useEffect } from "react"

Expand Down
2 changes: 2 additions & 0 deletions src/app/components/CreditCard/CreditCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import { setBalance } from "@/GlobalRedux/Features/balance/balanceSlice";
import axios from "axios";
import { formatUnits } from "viem";



export default function CreditCard() {


Expand Down
2 changes: 1 addition & 1 deletion src/app/home/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function Page() {
console.log('usdcBalance', usdcBalance);
return (
<AuthPage>
<div id='render' className='relative'>
<div id='render' className='relative bg-background'>

<div>
{/* <div className='absolute -z-50 '>
Expand Down
4 changes: 1 addition & 3 deletions src/app/hooks/useGetBalance.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,4 @@ const useGetBalance = async (address: string) => {
}
};



export default useGetBalance;
export default useGetBalance;
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function RootLayout({


return (
<html className='h-full overflow-auto font-sans'>
<html className='h-full font-sans'>
<head>
<title>Payments, Stephen Gordon</title>

Expand Down Expand Up @@ -149,7 +149,7 @@ export default function RootLayout({
/>
</head>

<body>
<body className='overflow-hidden'>
<ThemeProvider
attribute='class'
defaultTheme='dark'
Expand Down

0 comments on commit a12a30c

Please sign in to comment.