Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Filip Lelek committed Jun 18, 2024
1 parent eb0449d commit 30a0ee3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/backendService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export const getAllocatorsWithSSABotEnabled =
method: "GET",
url: `${config.backendApi}/allocators`,
});
const allocatorsWithSSABotEnable = response.data.filter(
const allocatorsWithSSABotEnabled = response.data.filter(
(allocator: Allocator) => !allocator.disable_ssa_bot,
);
return {
data: allocatorsWithSSABotEnable,
data: allocatorsWithSSABotEnabled,
error: "",
success: true,
};
Expand Down

0 comments on commit 30a0ee3

Please sign in to comment.