mirror of
https://github.com/domfelipe/mika-agent-assist.git
synced 2026-08-07 20:16:42 +00:00
Changes
Co-authored-by: domfelipe <53182096+domfelipe@users.noreply.github.com>
This commit is contained in:
parent
09e7e8eb1e
commit
3037bdbd75
2 changed files with 84 additions and 0 deletions
|
|
@ -7,6 +7,7 @@ import { useProfile } from "@/hooks/use-profile";
|
|||
import { Button } from "@/components/ui/button";
|
||||
import { Skeleton } from "@/components/ui/skeleton";
|
||||
import { SubscriptionBanner } from "@/components/mika/SubscriptionBanner";
|
||||
import { SkillsDashboardWidget } from "@/components/mika/SkillsDashboardWidget";
|
||||
import { cn } from "@/lib/utils";
|
||||
|
||||
export const Route = createFileRoute("/painel/")({
|
||||
|
|
@ -46,6 +47,8 @@ function DashboardPage() {
|
|||
{subscription && (subscription.status === "incomplete" || subscription.status === "active") && (
|
||||
<ProvisioningCard />
|
||||
)}
|
||||
|
||||
{subscription && subscription.status === "active" && <SkillsDashboardWidget />}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue