1
0
forked from baron/baron-sso

관계 탭 일시적 노출 현상 수정

This commit is contained in:
2026-04-30 10:25:48 +09:00
parent 52936b2b88
commit 6d5a861d17

View File

@@ -388,7 +388,11 @@ function ClientRelationsPage() {
</CardDescription>
</CardHeader>
<CardContent className="space-y-6">
{isRelationshipViewForbidden ? (
{isLoading ? (
<div className="py-8 text-center text-sm text-muted-foreground">
{t("msg.dev.clients.relationships.loading", "Loading relationships...")}
</div>
) : isRelationshipViewForbidden ? (
<div className="rounded-md border border-border bg-muted/30 p-4 text-sm text-muted-foreground">
{relationshipViewForbiddenMessage}
</div>