From 59f477c343a075e1374cc23752a334044f3c6e3a Mon Sep 17 00:00:00 2001 From: nessi Date: Tue, 3 Feb 2026 15:53:40 +0100 Subject: [PATCH] Rename CHIP_LIST to CHIP_OPTIONS for clarity The constant name was updated to better reflect its purpose as a list of selectable options. This improves code readability and maintainability. --- frontend/src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 318687f..faf63e3 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -1,7 +1,7 @@ import React, { useEffect, useState } from "react"; const API = "/api"; -const CHIP_LIST = ["AL", "JG", "JN", "SN", "TL"]; +const CHIP_OPTIONS = ["AL", "JG", "JN", "SN", "TL"]; async function api(path, opts = {}) {