Design token updates.
Some checks failed
Test / vitest (push) Successful in 10m47s
Test / playwright (push) Failing after 9m11s
Test / visual (push) Failing after 9m11s
Test / Notify on failure (push) Successful in 2s

This commit is contained in:
Jennie Robinson Faber 2026-04-11 23:24:38 +01:00
parent de3bcc479a
commit c6b970a621
13 changed files with 198 additions and 211 deletions

View file

@ -27,5 +27,6 @@ export default defineEventHandler(async (event) => {
notifications: member.notifications,
privacy: member.privacy,
createdAt: member.createdAt,
onboarding: member.onboarding,
};
});

View file

@ -13,7 +13,7 @@ const wikiArticleSchema = new mongoose.Schema(
lastSyncedAt: Date,
outlineUpdatedAt: Date
},
{ timestamps: true }
{ timestamps: true, suppressReservedKeysWarning: true }
)
export default mongoose.models.WikiArticle ||