dirk-cfx-react 1.1.68 → 1.1.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -2349,7 +2349,7 @@ var GTA_CONTROLS = [
2349
2349
  // ── Misc ───────────────────────────────────────────────────────────────────
2350
2350
  { id: 51, symbol: "INPUT_CONTEXT", label: "Context (E)", defaultKey: "E", group: "Misc" },
2351
2351
  { id: 52, symbol: "INPUT_CONTEXT_SECONDARY", label: "Context Secondary", defaultKey: "Q", group: "Misc" },
2352
- { id: 73, symbol: "INPUT_CHARACTER_WHEEL", label: "Character Wheel", defaultKey: "Left Alt", group: "Misc" },
2352
+ { id: 19, symbol: "INPUT_CHARACTER_WHEEL", label: "Character Wheel", defaultKey: "Left Alt", group: "Misc" },
2353
2353
  { id: 105, symbol: "INPUT_HUD_SPECIAL", label: "Special Ability", defaultKey: "Caps Lock", group: "Misc" },
2354
2354
  { id: 121, symbol: "INPUT_MULTIPLAYER_INFO", label: "Player List", defaultKey: "Z", group: "Misc" },
2355
2355
  { id: 170, symbol: "INPUT_SAVE_REPLAY_CLIP", label: "Save Replay Clip", defaultKey: "F1", group: "Misc" },
@@ -5288,7 +5288,10 @@ var FiveMKeyBindInput = Object.assign(Root, {
5288
5288
  });
5289
5289
  function buildGroupedData(extraIds = []) {
5290
5290
  const groups = /* @__PURE__ */ new Map();
5291
+ const seen = /* @__PURE__ */ new Set();
5291
5292
  for (const c of GTA_CONTROLS) {
5293
+ if (seen.has(c.id)) continue;
5294
+ seen.add(c.id);
5292
5295
  if (!groups.has(c.group)) groups.set(c.group, []);
5293
5296
  groups.get(c.group).push(c);
5294
5297
  }