summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-05-04 15:53:46 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-05-04 15:53:46 +0700
commit32e1f2ee577f227f6535782cb3c17867a9b4365c (patch)
tree072542714b1243644feb5c2422ac809470c6c562
parente86b2ae98a5dc8d3f1a725278d20ddde6e3dc760 (diff)
fix loader
-rw-r--r--src/pages/_app.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/_app.jsx b/src/pages/_app.jsx
index c8d76153..e04106c1 100644
--- a/src/pages/_app.jsx
+++ b/src/pages/_app.jsx
@@ -43,8 +43,8 @@ function MyApp({ Component, pageProps }) {
return (
<>
- {animateLoader && (
- <div className='fixed w-screen h-screen z-[500] flex justify-center items-center'>
+ {!animateLoader && (
+ <div className='fixed w-screen h-screen z-[500] bg-white flex justify-center items-center'>
<LogoSpinner />
</div>
)}