From bf8f93f756b5341eba28e38228e3cc407b3ba2f7 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Thu, 14 Jul 2022 16:19:21 -0500 Subject: [PATCH] Show Codeable on productivity-tools --- src/components/default-listing.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/default-listing.astro b/src/components/default-listing.astro index d9caf12..8ca2f7e 100644 --- a/src/components/default-listing.astro +++ b/src/components/default-listing.astro @@ -36,8 +36,8 @@ const adName = (() => { // Games if ( details.isGame ) return 'new-world-1' - // Developer Tools - if ( listing?.category?.slug === 'developer-tools' ) return 'codeable-1' + // Productivity Apps + if ( listing?.category?.slug === 'productivity-tools' ) return 'codeable-1' return 'default' })()