diff --git a/app/features/tier-list-maker/components/TierRow.module.css b/app/features/tier-list-maker/components/TierRow.module.css index ea99a1d72..b65ebfb67 100644 --- a/app/features/tier-list-maker/components/TierRow.module.css +++ b/app/features/tier-list-maker/components/TierRow.module.css @@ -70,7 +70,6 @@ cursor: pointer; } - .targetZoneSelectable:hover { background-color: var(--color-bg-higher); } diff --git a/app/features/tier-list-maker/hooks/useTierList.ts b/app/features/tier-list-maker/hooks/useTierList.ts index 3e95b20d9..4db4dcaa9 100644 --- a/app/features/tier-list-maker/hooks/useTierList.ts +++ b/app/features/tier-list-maker/hooks/useTierList.ts @@ -74,7 +74,7 @@ export function useTierList() { const [canAddDuplicates, setCanAddDuplicates] = useSearchParamState({ name: "canAddDuplicates", - defaultValue: true, + defaultValue: false, revive: (value) => value === "true", }); diff --git a/app/features/tier-list-maker/routes/tier-list-maker.tsx b/app/features/tier-list-maker/routes/tier-list-maker.tsx index 29586a05a..47665f5cb 100644 --- a/app/features/tier-list-maker/routes/tier-list-maker.tsx +++ b/app/features/tier-list-maker/routes/tier-list-maker.tsx @@ -227,10 +227,10 @@ function TierListMakerContent() { ))} setCanAddDuplicates(!value)} > - {t("tier-list-maker:allowDuplicates")} + {t("tier-list-maker:noDuplicates")}