Skip to content

Commit

Permalink
feat(pci-object-storage): fix review issue
Browse files Browse the repository at this point in the history
ref: TAPC-1189
Signed-off-by: Selmen AKRMI <[email protected]>
  • Loading branch information
Selmen AKRMI committed Nov 4, 2024
1 parent 123212a commit d196cec
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,9 @@ export default class RegionsListController {
(value, index, self) =>
index ===
self.findIndex(
(t) =>
t.name === value.name && t.datacenter === value.datacenter,
(region) =>
region.name === value.name &&
region.datacenter === value.datacenter,
),
);

Expand Down

0 comments on commit d196cec

Please sign in to comment.