Skip to content

Commit

Permalink
Drop unneeded empty label
Browse files Browse the repository at this point in the history
  • Loading branch information
tiliv committed May 2, 2024
1 parent 0700f64 commit 95fca6e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/hooks/useSubDisplayRings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ const SLOT_ORDER = [
'ring4b',
];
const SLOTS = {
ring1a: [" ", [0, 0]],
ring1b: [" ", [0, 2]],
ring2a: [" ", [1, 0]],
ring2b: [" ", [1, 2]],
ring3a: [" ", [2, 0]],
ring3b: [" ", [2, 2]],
ring4a: [" ", [3, 0]],
ring4b: [" ", [3, 2]],
ring1a: ["", [0, 0]],
ring1b: ["", [0, 2]],
ring2a: ["", [1, 0]],
ring2b: ["", [1, 2]],
ring3a: ["", [2, 0]],
ring3b: ["", [2, 2]],
ring4a: ["", [3, 0]],
ring4b: ["", [3, 2]],
};
const SPRITE_POSITIONS = {
ring1a: [[0, 0]],
Expand Down

0 comments on commit 95fca6e

Please sign in to comment.