Skip to content

Commit

Permalink
Fix: depenecie=>dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert committed Sep 20, 2024
1 parent 6ed52fd commit 42d139d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class LandscapeNavigation {
}

private isInModuleDependencies(dependencies: LandscapeElementId[]): boolean {
return dependencies.findIndex(depenecie => depenecie.get() == this.module().slug().get()) >= 0;
return dependencies.findIndex(dependency => dependency.get() == this.module().slug().get()) >= 0;
}

private findModuleIndexInDependencies(modules: LandscapeModule[]): number {
Expand Down

0 comments on commit 42d139d

Please sign in to comment.