From 61dcf21730f50fcc9a99d655f3041db17ffbfc80 Mon Sep 17 00:00:00 2001 From: Igor Propisnov Date: Thu, 22 Aug 2024 15:00:17 +0200 Subject: [PATCH] remove unused code --- .../event-root/create-event/create-event.component.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/frontend/src/app/pages/event-root/create-event/create-event.component.ts b/frontend/src/app/pages/event-root/create-event/create-event.component.ts index 85d6e32..07312c6 100644 --- a/frontend/src/app/pages/event-root/create-event/create-event.component.ts +++ b/frontend/src/app/pages/event-root/create-event/create-event.component.ts @@ -56,14 +56,6 @@ export class CreateEventComponent { }); } - public getStepContent(index: number): string { - if (index < this.currentStep()) { - return this.isStepValid(index) ? '✓' : '?'; - } else { - return (index + 1).toString(); - } - } - public goToStep(stepIndex: number): void { if (stepIndex < this.currentStep()) { this.currentStep.set(stepIndex);