문제 상황공공데이터 API에서 받은 하루 동안의 특정 경로의 고속버스 운행 리스트 데이터를 전역 상태인 useTowardBusListStore()에 Array concat으로 기존 배열 데이터 + 받은 데이터를 저장하고 있었다.zustand로 전역 store를 만들었으며, 아래에서 useForwardBusListStore의 concat 함수 코드만 보면 된다.concat 함수를 보면 원래 state list에 새로 들어온 list를 합치는 작업을 한다.forwardBusList: [...state.forwardBusList, ...newforwardBusList]import { create } from 'zustand';import type { ForwardBusListState } from './ind..