From 24d46f84013fbcbe95721115e7c06a87fdb217cf Mon Sep 17 00:00:00 2001 From: Bartosz Kaszubowski Date: Thu, 19 Mar 2026 08:44:45 +0100 Subject: [PATCH] fix unmaintained label overflow, correct script --- components/Library/UnmaintainedLabel.tsx | 4 ++-- scripts/build-and-score-data.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Library/UnmaintainedLabel.tsx b/components/Library/UnmaintainedLabel.tsx index ae4a8b323..22e832757 100644 --- a/components/Library/UnmaintainedLabel.tsx +++ b/components/Library/UnmaintainedLabel.tsx @@ -19,8 +19,8 @@ export default function UnmaintainedLabel({ alternatives, block }: Props) { diff --git a/scripts/build-and-score-data.ts b/scripts/build-and-score-data.ts index 8abf38176..1c4e8a910 100644 --- a/scripts/build-and-score-data.ts +++ b/scripts/build-and-score-data.ts @@ -25,7 +25,7 @@ const USE_DEBUG_REPOS = false; // If script should only write to the local data file and not upload to the store. // This is useful for debugging and testing purposes. -const ONLY_WRITE_LOCAL_DATA_FILE = true; +const ONLY_WRITE_LOCAL_DATA_FILE = false; // If script should try to scrape images from GitHub repositories. const SCRAPE_GH_IMAGES = false;