Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/Library/UnmaintainedLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export default function UnmaintainedLabel({ alternatives, block }: Props) {
<View style={tw`flex-shrink flex-row gap-1.5`}>
<View
style={[
tw`-ml-5 -mt-1 mb-2 flex-shrink flex-row flex-wrap items-start gap-1 rounded-r border border-l-0 border-palette-gray3 bg-palette-gray1 py-1.5 pl-5 pr-3 dark:border-default dark:bg-dark`,
block && tw`ml-0 rounded-lg rounded-r-lg border-l py-2 pl-3`,
tw`-ml-5 -mt-1.5 mb-1.5 mr-8 flex-shrink flex-row flex-wrap items-start gap-1 rounded-r border border-l-0 border-palette-gray3 bg-palette-gray1 py-1.5 pl-5 pr-3 dark:border-default dark:bg-dark`,
block && tw`ml-0 mr-0 rounded-lg rounded-r-lg border-l py-2 pl-3`,
isSmallScreen && tw`flex-col`,
strippedBackground(tw.prefixMatch('dark') ? 'var(--background)' : 'var(--gray-2)'),
]}>
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-and-score-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down