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.
This commit is contained in:
2026-02-03 15:53:40 +01:00
parent 7be21969e7
commit 59f477c343

View File

@@ -1,7 +1,7 @@
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
const API = "/api"; const API = "/api";
const CHIP_LIST = ["AL", "JG", "JN", "SN", "TL"]; const CHIP_OPTIONS = ["AL", "JG", "JN", "SN", "TL"];
async function api(path, opts = {}) { async function api(path, opts = {}) {