Fix recent trainings scope (#6571)

This commit is contained in:
Wasim Yousef Said 2026-06-22 15:24:04 +02:00 committed by GitHub
commit 2ec0b88471
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 6 deletions

View file

@ -41,7 +41,6 @@ import {
} from "@hugeicons/core-free-icons";
import { HugeiconsIcon } from "@hugeicons/react";
import { useNavigate } from "@tanstack/react-router";
import { RecentTrainingsSection } from "@/features/studio/recent-trainings-section";
import type { ReactElement } from "react";
import { useEffect, useState } from "react";
import {
@ -529,8 +528,6 @@ export function DataRecipesPage(): ReactElement {
))}
</div>
)}
<RecentTrainingsSection />
</main>
<Dialog open={learningDialogOpen} onOpenChange={setLearningDialogOpen}>

View file

@ -2,7 +2,6 @@
// Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
import { SectionCard } from "@/components/section-card";
import { RecentTrainingsSection } from "@/features/studio/recent-trainings-section";
import { Button } from "@/components/ui/button";
import {
Combobox,
@ -1224,8 +1223,6 @@ export function ExportPage() {
</>
)}
</SectionCard>
<RecentTrainingsSection />
</main>
</div>
);