fix(config): phase 7 follow-up — fix remaining /ims/ occurrences in sw.js, notifications, components

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-07-23 22:32:11 +08:00
co-authored by Claude Sonnet 4.6
parent 9d047e168f
commit 0389d6091a
12 changed files with 21 additions and 21 deletions
+2 -2
View File
@@ -34,7 +34,7 @@ export function UserManager({ users, sites }: Props) {
const patchUser = async (id: string, update: Record<string, unknown>) => {
setBusyId(id)
setError(null)
const res = await fetch('/ims/api/admin/users', {
const res = await fetch('/api/admin/users', {
method: 'PATCH',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ id, ...update }),
@@ -66,7 +66,7 @@ export function UserManager({ users, sites }: Props) {
e.preventDefault()
setSubmitting(true)
setError(null)
const res = await fetch('/ims/api/admin/users', {
const res = await fetch('/api/admin/users', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({