textReplace: fix edge case (#1521)

Co-authored-by: V <vendicated@riseup.net>
main
AutumnVN 1 year ago committed by GitHub
parent 645749b5ae
commit 0407be9847
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save