feat: add experiment logs to the monitoring page

ref: N25B-401
This commit is contained in:
Twirre Meulenbelt
2026-01-19 12:57:01 +01:00
parent 2c4f24fbb6
commit 6d5f1e33ef
19 changed files with 532 additions and 122 deletions

3
src/utils/capitalize.ts Normal file
View File

@@ -0,0 +1,3 @@
export default function (s: string) {
return s.charAt(0).toUpperCase() + s.slice(1);
}