fix: Fixed endpoint
Server Deploy / deploy (push) Successful in 1m20s

This commit is contained in:
domrichardson
2026-07-03 11:56:49 +01:00
parent 7c30d26878
commit 73a06227ba
4 changed files with 10 additions and 7 deletions
+2 -2
View File
@@ -78,8 +78,8 @@ function SecretsTokenCard({
const [copied, setCopied] = useState(false);
const readUrl =
typeof window !== "undefined"
? `${window.location.origin}/secrets/<group>`
: "/secrets/<group>";
? `${window.location.origin}/api/secrets/<group>/values`
: "/api/secrets/<group>/values";
const { mutate: rotate, isPending } = useMutation({
mutationFn: api.rotateSecretsToken,