Skip to content

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pajicf committed Dec 14, 2023
1 parent 4abc96b commit 1c0d9ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jobs/ticker.jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const updateReduxTickerState = (tickerData: TickerRegistryData) => {
export const initTickerState = async () => {
logger.log("Fetching all currently available tickers");
const tickers = await tickersService.getAllTickers();
let symbols: string[] = [];
const symbols: string[] = [];
tickers.forEach(tickerData => {
updateReduxTickerState(tickerData);
symbols.push(tickerData.tickerSymbol);
Expand Down

0 comments on commit 1c0d9ab

Please sign in to comment.