refactor: update TASK_TYPES to comment out 'credit_recharge' in CreateTaskDialog and SchedulersHeader

feat: add filter icon to SelectTrigger in SoundsPage for improved UI
This commit is contained in:
JSC
2025-09-21 13:56:50 +02:00
parent fde19f47c8
commit 75b52caf85
3 changed files with 5 additions and 3 deletions

View File

@@ -38,7 +38,7 @@ interface CreateTaskDialogProps {
onCancel: () => void
}
const TASK_TYPES: TaskType[] = ['play_sound', 'play_playlist']
const TASK_TYPES: TaskType[] = [/*'credit_recharge',*/ 'play_sound', 'play_playlist']
const RECURRENCE_TYPES: RecurrenceType[] = ['none', 'minutely', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'cron']
export function CreateTaskDialog({

View File

@@ -35,7 +35,7 @@ interface SchedulersHeaderProps {
}
const TASK_STATUSES: TaskStatus[] = ['pending', 'running', 'completed', 'failed', 'cancelled']
const TASK_TYPES: TaskType[] = ['credit_recharge', 'play_sound', 'play_playlist']
const TASK_TYPES: TaskType[] = [/*'credit_recharge',*/ 'play_sound', 'play_playlist']
export function SchedulersHeader({
searchQuery,