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:
@@ -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 = {}) {
|
||||||
|
|||||||
Reference in New Issue
Block a user