Application FAQ
Frequently asked questions
Common answers about brick.run, Garmin sync, workout cleanup, and support.
For full cleanup, do it directly in Garmin Connect Web on a computer. Open Training, then Workouts, then run the script below in the browser console.
Garmin warning
Deleting workouts through Garmin Connect removes them directly from your Garmin account. Treat that action as permanent and verify the list before running any console script.
- Log in to Garmin Connect on a computer browser.
- Go to Training, then go to Workouts.
- Wait for the workouts list to fully load.
- Right-click anywhere on the page and choose Inspect.
- Open the Console tab in Developer Tools.
- Paste the script below into the console.
- Press Enter and let it run until it prints Done!.
- Refresh the Garmin Workouts page and verify the workouts are gone.
Console script
Paste this exact script into the Garmin Connect Workouts page console.
const sleep = ms => new Promise(r => setTimeout(r, ms));
async function deleteAll() {
let count = 0;
while (true) {
const menu = document.querySelector(
'.WorkoutsList_ellipsisMenu__4RZ\\+p button'
);
if (!menu) {
console.log("Done!", count);
break;
}
menu.click();
await sleep(500);
const del = [...document.querySelectorAll("button")]
.find(b => b.textContent.trim() === "Delete");
if (!del) {
console.log("Couldn't find Delete button.");
break;
}
del.click();
await sleep(800);
await sleep(2000);
count++;
console.log("Deleted", count);
}
}
deleteAll();