From 8f57bd1745d92f02234c0db6e81020ef21e3ecd1 Mon Sep 17 00:00:00 2001 From: Vishesh 'ironeagle' Bangotra Date: Sun, 24 May 2026 15:58:14 +0530 Subject: [PATCH] ignoreSelf default true --- src/ReportSnapshots.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ReportSnapshots.tsx b/src/ReportSnapshots.tsx index bd47712..be20049 100644 --- a/src/ReportSnapshots.tsx +++ b/src/ReportSnapshots.tsx @@ -42,7 +42,7 @@ function formatDate(iso: string) { } export default function ReportSnapshots() { - const [ignoreSelf, setIgnoreSelf] = React.useState(false); + const [ignoreSelf, setIgnoreSelf] = React.useState(true); const [startDate, setStartDate] = React.useState(""); const [endDate, setEndDate] = React.useState(""); const [minAmount, setMinAmount] = React.useState("");