remove unused code

This commit is contained in:
Igor Hrenowitsch Propisnov 2024-08-22 15:00:17 +02:00
parent 07da5a199a
commit 61dcf21730
1 changed files with 0 additions and 8 deletions

View File

@ -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);