From 4c02ebd78e276de936b2aba5e2175159412e4163 Mon Sep 17 00:00:00 2001 From: "sentry[bot]" <39604003+sentry[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 22:37:18 +0000 Subject: [PATCH] Bug/CLARK-CLIENT-22/fix-typeerror-tags-undefined --- src/app/cube/details/components/splash/splash.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/cube/details/components/splash/splash.component.ts b/src/app/cube/details/components/splash/splash.component.ts index 93a0cb831..ac0189baa 100644 --- a/src/app/cube/details/components/splash/splash.component.ts +++ b/src/app/cube/details/components/splash/splash.component.ts @@ -88,7 +88,7 @@ export class SplashComponent implements OnInit, AfterViewInit { const tags = await this.tagsService.getTags(); // Get the full tags to pass into the pills component this.fullTags = tags.filter((tag: Tag) => { - if (this.learningObject.tags.includes(tag._id)) { + if (this.learningObject.tags?.includes(tag._id)) { return tag; } });