mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-04-30 03:23:46 +00:00
Fix linting and formatting issues
- Run Prettier to fix code style in 7 files - Auto-fix ESLint errors with --fix flag - Replace ++ with += 1 in commandTracking.ts - Add eslint-disable comments for intentional console.error usage - Fix destructuring, array types, and template literals - Remove trivial type annotations
This commit is contained in:
@@ -703,7 +703,7 @@ export function useRandomWords() {
|
||||
];
|
||||
|
||||
// Try to fetch random words from API, fallback to local list
|
||||
async function getRandomWords(count: number = 4): Promise<string[]> {
|
||||
async function getRandomWords(count = 4): Promise<string[]> {
|
||||
try {
|
||||
// Try Random Word API first
|
||||
const response = await fetch(
|
||||
|
||||
Reference in New Issue
Block a user