Commit a23cdec4 by Arjun Jhukal

updated the minor change

parent ad34fe21
......@@ -44,7 +44,7 @@ export default function Support() {
<p className="text-[11px] mb-8">
Questions about your account or gameplay? Our team is here for you.
</p>
<Link href="mailto:support@sweepstakeonline.com" className="underline">support@sweepstakeonline.com</Link>
<a href="mailto:support@sweepstakeonline.com" className="underline">support@sweepstakeonline.com</a>
</GlassWrapper>
<GlassWrapper className="p-6">
<img
......@@ -56,7 +56,7 @@ export default function Support() {
<p className="text-[11px] mb-8">
Questions about your account or gameplay? Our team is here for you.
</p>
<Link href="mailto:technical@sweepstakeonline.com" className="underline">technical@sweepstakeonline.com</Link>
<a href="mailto:technical@sweepstakeonline.com" className="underline">technical@sweepstakeonline.com</a>
</GlassWrapper>
</div>
</section>
......
......@@ -56,7 +56,7 @@ export default function UserProfileCard({ balance, loading }: { balance: any; lo
<div className="flex justify-center items-center gap-3">
<Image src={"/assets/images/current-balance.svg"} alt='' width={48} height={48} />
<div className="content mt-3 text-start">
<strong className="text-[12px] leading-[120%] font-[700] text-white block ">${balance?.data?.current_balance}</strong>
<strong className="text-[12px] leading-[120%] font-[700] text-white block ">SC:{balance?.data?.current_balance}</strong>
<span className="text-white text-[9px]">Current Balance</span>
</div>
</div>
......
......@@ -131,5 +131,5 @@ export default function ResetPasswordForm({ email }: { email?: string }) {
{!email ? <Link href={PATH.AUTH.LOGIN.ROOT} className='ss-btn bg-secondary-grad'>Back to Login</Link> : ""}
</div>
</form>
)
)
}
......@@ -14,7 +14,7 @@ import { ActivityProps } from '@/types/notification';
export default function Activities() {
const activityTypes = [
{ value: '', label: 'All Activities' },
// { value: '', label: 'All Activities' },
{ value: 'registration', label: 'Registration' },
{ value: 'login', label: 'Login/Logout' },
{ value: 'deposit', label: 'Deposits' },
......@@ -41,7 +41,7 @@ export default function Activities() {
activity_type: activityType,
status
}),
[page, pageSize, search, status]
[page, pageSize, search, status, activityType]
);
......
......@@ -105,7 +105,7 @@ export default function CredentialsCard({ cred }: { cred: CredentialsProps }) {
{/* Action Buttons */}
<div className="action__group mt-4 flex flex-col md:flex-row justify-between gap-2 md:gap-4">
<Link
href={`/buy-coins/${cred?.id}`}
href={cred?.name === "goldcoincity" ? "/buy-coins" : `/buy-coins/${cred?.id}`}
className="ss-btn bg-primary-grad flex justify-center items-center gap-1"
>
<Coin /> Buy Coins
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment