Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ jobs:
run: npm ci

- name: Run linter
run: npm run lint || true
# TODO: Remove "|| true" after cleanup branch fixes all lint errors
run: npm run lint

- name: Run tests
run: npm test
Expand All @@ -38,5 +37,5 @@ jobs:
SKIP_ENV_VALIDATION: true
# Provide dummy values for required env vars during build
MONGODB_URI: mongodb://localhost:27017/test
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: pk_test_dummy
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: pk_test_Y2xlcmsuY29tJA
CLERK_SECRET_KEY: sk_test_dummy
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,10 @@ next-env.d.ts
claude.md
# Local Netlify folder
.netlify

.gemini/
gha-creds-*.json

# Gemini Agent Files
.github/commands/
.github/workflows/gemini-*.yml
2 changes: 1 addition & 1 deletion src/app/betting-history/page.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import { useState, useEffect } from 'react';
import { useState } from 'react';
import useSWR from 'swr';
import { useUser } from '@clerk/nextjs';
import Link from 'next/link';
Expand Down
18 changes: 0 additions & 18 deletions src/app/change-password/page.jsx

This file was deleted.

10 changes: 0 additions & 10 deletions src/app/change-username/page.jsx

This file was deleted.

57 changes: 0 additions & 57 deletions src/app/contexts/DarkModeContext.jsx

This file was deleted.

74 changes: 0 additions & 74 deletions src/app/daily-tasks/page.html

This file was deleted.

28 changes: 0 additions & 28 deletions src/app/daily-tasks/style.css

This file was deleted.

4 changes: 2 additions & 2 deletions src/app/dashboard/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import { useEffect, useRef } from 'react';
import Link from 'next/link';
import { useRouter } from 'next/navigation';
import { useUserContext } from '../contexts/UserContext';
import { useUserStats } from '../hooks/useAPI';
import { useUserContext } from '@/app/contexts/UserContext';
import { useUserStats } from '@/app/hooks/useAPI';
import {
BalanceDisplay,
DottedDivider,
Expand Down
50 changes: 0 additions & 50 deletions src/app/data/games.js

This file was deleted.

72 changes: 0 additions & 72 deletions src/app/data/users.js

This file was deleted.

2 changes: 1 addition & 1 deletion src/app/games/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
} from '@/components/experimental';
import ErrorBoundary from '@components/ErrorBoundary';
import { GameCardSkeleton } from '@/components/ui/LoadingSkeleton';
import { useUserContext } from '../contexts/UserContext';
import { useUserContext } from '@/app/contexts/UserContext';

// SWR fetcher function
const fetcher = (url) => fetch(url).then(res => {
Expand Down
File renamed without changes.
Loading