diff --git a/src/store/stock-quote/index.js b/src/store/stock-quote/index.js index 07f6d46..5849d39 100644 --- a/src/store/stock-quote/index.js +++ b/src/store/stock-quote/index.js @@ -50,12 +50,11 @@ export const useStockQuote = createGlobalState(() => { '&to=' + toDate; const res = await axios.get(url) - // console.error(res) if (res.status === 200) { if (res.data.status === 0) { lastTradingDay = dayjs(res.data.data[0].date) } - return lastTradingDay.format('MMM D, YYYY, h:mm A [EDT]') + return lastTradingDay.format('MMM D, YYYY') + ' 4:00 PM [EDT]' } }