From fca9bdb724baaf6a63fd2d768b7e0b467c5002cb Mon Sep 17 00:00:00 2001 From: Stefan Verhoeven Date: Mon, 3 Apr 2023 11:59:08 +0200 Subject: [PATCH] Remove Scenario TODO, captured with https://github.com/i-VRESSE/bartended-haddock3/issues/29 --- app/catalogs/index.server.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/app/catalogs/index.server.ts b/app/catalogs/index.server.ts index fbcb6bec..11882a8f 100644 --- a/app/catalogs/index.server.ts +++ b/app/catalogs/index.server.ts @@ -17,7 +17,6 @@ export async function getCatalog(level: string) { if (!(level in catalogs)) { throw new Error(`No catalog found for level ${level}`) } - // TODO drop examples, they will be shown as scenarios catalog.examples = {} return prepareCatalog(catalog); }