Skip to content

Commit

Permalink
fix: 🐛 SEO issue bing.com
Browse files Browse the repository at this point in the history
  • Loading branch information
FabienBounoir committed Jan 5, 2025
1 parent a02325a commit 28be6ef
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions src/routes/create/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
let type = $state();
let team = $state('');
let status = $state('init');
let status = $state('create');
let advancedSettingsObject = $state({
hexcode: '#FF7F00',
Expand Down Expand Up @@ -115,20 +115,8 @@
type = window.localStorage.getItem('type') || 'TSHIRT';
team = window.localStorage.getItem('team') || '';
status = 'create';
});
const checkDeckIsValide = (deck) => {
if (!deck) return false;
if (!deck.name || !deck.cards) return false;
if (deck.cards.length < 2) return false;
return true;
};
const addNewDeck = () => {
window.localStorage.setItem(
`custom-${customCard.name}`.toLocaleUpperCase(),
Expand Down

0 comments on commit 28be6ef

Please sign in to comment.