Skip to content

Commit

Permalink
[frontend] Fix filters on inject creation
Browse files Browse the repository at this point in the history
  • Loading branch information
RomuDeuxfois committed Sep 17, 2024
1 parent 6652873 commit 695eb59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const CreateInject: FunctionComponent<Props> = ({ title, onCreateInject, open =
});
};

const { queryableHelpers, searchPaginationInput } = useQueryableWithLocalStorage('injector-contracts', initSearchPaginationInput());
const { queryableHelpers, searchPaginationInput } = useQueryableWithLocalStorage(isAtomic ? 'injector-contracts-atomic' : 'injector-contracts', initSearchPaginationInput());

const [selectedContract, setSelectedContract] = useState<number | null>(null);
const selectContract = (contract: number) => {
Expand Down

0 comments on commit 695eb59

Please sign in to comment.