mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 06:31:13 -05:00
Fix final type safety issue
This commit is contained in:
@@ -524,7 +524,15 @@ export function SubmissionReviewManager({
|
||||
function ReviewContent() {
|
||||
return (
|
||||
<div className="flex flex-col gap-4 h-full">
|
||||
<Tabs value={activeTab} onValueChange={(v) => setActiveTab(v as any)} className="flex-1 flex flex-col">
|
||||
<Tabs
|
||||
value={activeTab}
|
||||
onValueChange={(v) => {
|
||||
if (v === 'items' || v === 'dependencies') {
|
||||
setActiveTab(v);
|
||||
}
|
||||
}}
|
||||
className="flex-1 flex flex-col"
|
||||
>
|
||||
<TabsList className="grid w-full grid-cols-2">
|
||||
<TabsTrigger value="items">
|
||||
<CheckCircle2 className="w-4 h-4 mr-2" />
|
||||
|
||||
Reference in New Issue
Block a user