forked from baron/baron-sso
병합 code check 오류 수정
This commit is contained in:
@@ -44,7 +44,7 @@ function ClientDetailsPage() {
|
|||||||
const queryClient = useQueryClient();
|
const queryClient = useQueryClient();
|
||||||
const clientId = params.id ?? "";
|
const clientId = params.id ?? "";
|
||||||
|
|
||||||
const { data, error } = useQuery({
|
const { data, error, isLoading } = useQuery({
|
||||||
queryKey: ["client", clientId],
|
queryKey: ["client", clientId],
|
||||||
queryFn: () => fetchClient(clientId),
|
queryFn: () => fetchClient(clientId),
|
||||||
enabled: clientId.length > 0,
|
enabled: clientId.length > 0,
|
||||||
@@ -480,7 +480,6 @@ function ClientDetailsPage() {
|
|||||||
)}
|
)}
|
||||||
rows={5}
|
rows={5}
|
||||||
value={redirectUris}
|
value={redirectUris}
|
||||||
onFocus={(e) => e.currentTarget.select()}
|
|
||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
redirectUrisHydratedRef.current = true;
|
redirectUrisHydratedRef.current = true;
|
||||||
setRedirectUris(e.target.value);
|
setRedirectUris(e.target.value);
|
||||||
|
|||||||
@@ -924,7 +924,6 @@ function ClientGeneralPage() {
|
|||||||
</Label>
|
</Label>
|
||||||
<Textarea
|
<Textarea
|
||||||
value={redirectUris}
|
value={redirectUris}
|
||||||
onFocus={(e) => e.currentTarget.select()}
|
|
||||||
onChange={(e) => setRedirectUris(e.target.value)}
|
onChange={(e) => setRedirectUris(e.target.value)}
|
||||||
placeholder={t(
|
placeholder={t(
|
||||||
"ui.dev.clients.general.redirect.placeholder",
|
"ui.dev.clients.general.redirect.placeholder",
|
||||||
|
|||||||
Reference in New Issue
Block a user