textReplace: fix edge case (#1521)
Co-authored-by: V <vendicated@riseup.net>
This commit is contained in:
parent
645749b5ae
commit
0407be9847
1 changed files with 1 additions and 0 deletions
|
@ -123,6 +123,7 @@ function TextReplace({ title, rulesArray, rulesKey, update }: TextReplaceProps)
|
|||
const isRegexRules = title === "Using Regex";
|
||||
|
||||
async function onClickRemove(index: number) {
|
||||
if (index === rulesArray.length - 1) return;
|
||||
rulesArray.splice(index, 1);
|
||||
|
||||
await DataStore.set(rulesKey, rulesArray);
|
||||
|
|
Loading…
Reference in a new issue