From 0416fa2f07dcbce22d9a2601ef7c48c8c9101e65 Mon Sep 17 00:00:00 2001 From: Lisa Fischer Date: Fri, 13 Sep 2024 10:16:21 +0200 Subject: [PATCH] fix --- src/Plate/coordinateSystem2x16.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Plate/coordinateSystem2x16.ts b/src/Plate/coordinateSystem2x16.ts index e5db64a8..6d3935ae 100644 --- a/src/Plate/coordinateSystem2x16.ts +++ b/src/Plate/coordinateSystem2x16.ts @@ -1,6 +1,6 @@ import { CoordinateSystem } from './types'; -export const COORDINATE_SYSTEM_2x16 = { +export const COORDINATE_SYSTEM_2X16 = { rows: [ 'A', 'B', @@ -22,4 +22,4 @@ export const COORDINATE_SYSTEM_2x16 = { columns: [1, 2], } as const satisfies CoordinateSystem; -export type CoordinateSystem2x16 = typeof COORDINATE_SYSTEM_2x16; +export type CoordinateSystem2x16 = typeof COORDINATE_SYSTEM_2X16;