diff --git a/src/routes/.well-known/microsoft-identity-association.json/+server.js b/src/routes/.well-known/microsoft-identity-association.json/+server.js
index cb6abdb..c74dc3a 100644
--- a/src/routes/.well-known/microsoft-identity-association.json/+server.js
+++ b/src/routes/.well-known/microsoft-identity-association.json/+server.js
@@ -1,7 +1,7 @@
 import { MSID_ASSOCIATION } from '$env/static/private';
 
 export async function GET() {
-	return new Response(JSON.stringify(MSID_ASSOCIATION), {
+	return new Response(JSON.stringify(JSON.parse(MSID_ASSOCIATION)), {
 		headers: {
 			'Cache-Control': `public, max-age=${86400}`,
 			'Content-Type': 'application/json'