Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sweepstake
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Arjun Jhukal
sweepstake
Commits
6f85b46c
Commit
6f85b46c
authored
Nov 03, 2025
by
Arjun Jhukal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commented the console
parent
a103d162
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
8 additions
and
8 deletions
+8
-8
page.tsx
src/app/(dashboard)/(admin)/payment-setup/page.tsx
+1
-1
page.tsx
.../(dashboard)/(user)/(outsideAuth)/general/[slug]/page.tsx
+1
-1
page.tsx
src/app/(dashboard)/(user)/(outsideAuth)/page.tsx
+1
-1
SeonProvider.tsx
src/app/SeonProvider.tsx
+1
-1
UspSlider.tsx
src/components/pages/dashboard/UspSlider.tsx
+1
-1
index.tsx
...erDashboard/buyCoins/buyCoinSinlgeGame/checkout/index.tsx
+1
-1
index.tsx
...es/dashboard/userDashboard/games/exclusiveGames/index.tsx
+1
-1
index.tsx
...ponents/pages/dashboard/userDashboard/verifyKyc/index.tsx
+1
-1
No files found.
src/app/(dashboard)/(admin)/payment-setup/page.tsx
View file @
6f85b46c
...
@@ -30,7 +30,7 @@ export default function PaymentSetup() {
...
@@ -30,7 +30,7 @@ export default function PaymentSetup() {
.
matches
(
/^
\d
+$/
,
'Merchant ID must be numeric'
),
.
matches
(
/^
\d
+$/
,
'Merchant ID must be numeric'
),
}),
}),
onSubmit
:
(
values
)
=>
{
onSubmit
:
(
values
)
=>
{
console
.
log
(
'Submitting IDEM Payment Setup:'
,
values
);
//
console.log('Submitting IDEM Payment Setup:', values);
try
{
try
{
...
...
src/app/(dashboard)/(user)/(outsideAuth)/general/[slug]/page.tsx
View file @
6f85b46c
...
@@ -11,7 +11,7 @@ export default async function GeneralPage(props: { params: Promise<{ slug: strin
...
@@ -11,7 +11,7 @@ export default async function GeneralPage(props: { params: Promise<{ slug: strin
try
{
try
{
pageData
=
await
getPageDetail
(
slug
);
pageData
=
await
getPageDetail
(
slug
);
}
catch
(
err
)
{
}
catch
(
err
)
{
console
.
log
(
"❌ Failed to fetch games:"
,
err
);
//
console.log("❌ Failed to fetch games:", err);
return
notFound
();
return
notFound
();
}
}
...
...
src/app/(dashboard)/(user)/(outsideAuth)/page.tsx
View file @
6f85b46c
...
@@ -60,7 +60,7 @@ export default async function Home() {
...
@@ -60,7 +60,7 @@ export default async function Home() {
subBannersError
=
"Failed to load sub banners."
;
subBannersError
=
"Failed to load sub banners."
;
}
}
console
.
log
(
banners
);
//
console.log(banners);
return
(
return
(
<
DashboardProvider
>
<
DashboardProvider
>
<>
<>
...
...
src/app/SeonProvider.tsx
View file @
6f85b46c
...
@@ -38,7 +38,7 @@ export const SeonProvider: React.FC<{ children: React.ReactNode }> = ({ children
...
@@ -38,7 +38,7 @@ export const SeonProvider: React.FC<{ children: React.ReactNode }> = ({ children
});
});
const
session
=
await
seon
.
getSession
();
const
session
=
await
seon
.
getSession
();
console
.
log
(
"Device fingerprint session:"
,
session
);
//
console.log("Device fingerprint session:", session);
setDeviceId
(
session
);
setDeviceId
(
session
);
}
catch
(
err
)
{
}
catch
(
err
)
{
console
.
error
(
"SEON init error:"
,
err
);
console
.
error
(
"SEON init error:"
,
err
);
...
...
src/components/pages/dashboard/UspSlider.tsx
View file @
6f85b46c
...
@@ -19,7 +19,7 @@ export default function UspSlider({ uspData }: { uspData: UspItem[] }) {
...
@@ -19,7 +19,7 @@ export default function UspSlider({ uspData }: { uspData: UspItem[] }) {
const
containerRef
=
useRef
<
HTMLDivElement
>
(
null
);
const
containerRef
=
useRef
<
HTMLDivElement
>
(
null
);
const
x
=
useMotionValue
(
0
);
const
x
=
useMotionValue
(
0
);
console
.
log
(
uspData
);
//
console.log(uspData);
// Duplicate the data for seamless loop
// Duplicate the data for seamless loop
useEffect
(()
=>
{
useEffect
(()
=>
{
setItems
([...
uspData
,
...
uspData
,
...
uspData
]);
setItems
([...
uspData
,
...
uspData
,
...
uspData
]);
...
...
src/components/pages/dashboard/userDashboard/buyCoins/buyCoinSinlgeGame/checkout/index.tsx
View file @
6f85b46c
...
@@ -24,7 +24,7 @@ export default function CheckoutPage({ amount, slug, bonus }: {
...
@@ -24,7 +24,7 @@ export default function CheckoutPage({ amount, slug, bonus }: {
const
[
getPaymentLink
,
{
isLoading
:
gettingLink
}]
=
useDepositMutation
();
const
[
getPaymentLink
,
{
isLoading
:
gettingLink
}]
=
useDepositMutation
();
const
[
currentPaymentMode
,
setCurrentPaymentMode
]
=
React
.
useState
(
"crypto"
);
const
[
currentPaymentMode
,
setCurrentPaymentMode
]
=
React
.
useState
(
"crypto"
);
console
.
log
(
pathname
)
//
console.log(pathname)
return
(
return
(
<
section
className=
"checkout__root"
>
<
section
className=
"checkout__root"
>
<
div
className=
"grid grid-cols-12 gap-4 lg:gap-10 xl:gap-12"
>
<
div
className=
"grid grid-cols-12 gap-4 lg:gap-10 xl:gap-12"
>
...
...
src/components/pages/dashboard/userDashboard/games/exclusiveGames/index.tsx
View file @
6f85b46c
...
@@ -12,7 +12,7 @@ export default async function ExclusiveGamePage() {
...
@@ -12,7 +12,7 @@ export default async function ExclusiveGamePage() {
try
{
try
{
games
=
await
getAllGames
();
games
=
await
getAllGames
();
}
catch
(
err
)
{
}
catch
(
err
)
{
console
.
log
(
"❌ Failed to fetch games:"
,
err
);
//
console.log("❌ Failed to fetch games:", err);
return
<
p
className=
"text-red-500"
>
Failed to load games.
</
p
>;
return
<
p
className=
"text-red-500"
>
Failed to load games.
</
p
>;
}
}
...
...
src/components/pages/dashboard/userDashboard/verifyKyc/index.tsx
View file @
6f85b46c
...
@@ -75,7 +75,7 @@ export default function VerifyKYCPage() {
...
@@ -75,7 +75,7 @@ export default function VerifyKYCPage() {
},
},
validationSchema
,
validationSchema
,
onSubmit
:
(
values
)
=>
{
onSubmit
:
(
values
)
=>
{
console
.
log
(
'Form submitted:'
,
values
);
//
console.log('Form submitted:', values);
},
},
});
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment