From e7af3d11824b42915cf6789f9c508a727511d678 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Wed, 13 May 2026 20:48:43 -0500 Subject: [PATCH] refactor(scanner): removed 69 as an option lol --- backend/mobile/availableScanIds.route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/mobile/availableScanIds.route.ts b/backend/mobile/availableScanIds.route.ts index 34fd126..48c601f 100644 --- a/backend/mobile/availableScanIds.route.ts +++ b/backend/mobile/availableScanIds.route.ts @@ -8,7 +8,7 @@ import { apiReturn } from "../utils/returnHelper.utils.js"; const r = Router(); // scanners that are dedicated to specific users. -const SPECIAL_SCANNERS = [69, 98]; +const SPECIAL_SCANNERS = [98]; const buildAllowedScannerIds = (scannerCount: number) => { const generatedIds = Array.from({ length: scannerCount }, (_, i) => i + 1);