1
0
forked from baron/baron-sso

병합 code check 오류 수정

This commit is contained in:
2026-04-09 17:08:54 +09:00
parent c6ddf7c485
commit 46262c80c1
2 changed files with 1 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ function ClientDetailsPage() {
const queryClient = useQueryClient();
const clientId = params.id ?? "";
const { data, error } = useQuery({
const { data, error, isLoading } = useQuery({
queryKey: ["client", clientId],
queryFn: () => fetchClient(clientId),
enabled: clientId.length > 0,
@@ -480,7 +480,6 @@ function ClientDetailsPage() {
)}
rows={5}
value={redirectUris}
onFocus={(e) => e.currentTarget.select()}
onChange={(e) => {
redirectUrisHydratedRef.current = true;
setRedirectUris(e.target.value);

View File

@@ -924,7 +924,6 @@ function ClientGeneralPage() {
</Label>
<Textarea
value={redirectUris}
onFocus={(e) => e.currentTarget.select()}
onChange={(e) => setRedirectUris(e.target.value)}
placeholder={t(
"ui.dev.clients.general.redirect.placeholder",