fix auth header

This commit is contained in:
soichisumi
2025-01-25 22:50:05 +09:00
parent 207c0e8299
commit 3e44df923f

View File

@@ -614,7 +614,7 @@
try {
const response = await fetch('/health', {
headers: {
'Authorization': `Bearer ${localStorage.getItem('apiKey')}`
'X-API-Key': `${localStorage.getItem('apiKey')}`
}
});