remove toast when successfully stopping

it gets hidden almost immediately
This commit is contained in:
Josh Hawkins 2026-05-03 13:01:04 -05:00
parent dfaa178c0e
commit cf672badb5
2 changed files with 0 additions and 4 deletions

View File

@ -21,7 +21,6 @@
"toast": {
"error": "Failed to start debug replay: {{error}}",
"alreadyActive": "A replay session is already active",
"stopped": "Debug replay stopped",
"stopError": "Failed to stop debug replay: {{error}}",
"goToReplay": "Go to Replay"
}

View File

@ -167,9 +167,6 @@ export default function Replay() {
axios
.post("debug_replay/stop")
.then(() => {
toast.success(t("dialog.toast.stopped"), {
position: "top-center",
});
refreshStatus();
})
.catch((error) => {