Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
dohaki committed Sep 11, 2024
1 parent f924102 commit 5343006
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const handler = async (
) => {
const logger = getLogger();
logger.debug({
at: "TokenList",
at: "Chains",
message: "Query data",
query,
});
Expand Down Expand Up @@ -66,7 +66,7 @@ const handler = async (
response.setHeader("Cache-Control", "s-maxage=3600");
response.status(200).json(filteredChains);
} catch (error: unknown) {
return handleErrorCondition("token-list", response, logger, error);
return handleErrorCondition("chains", response, logger, error);
}
};

Expand Down

0 comments on commit 5343006

Please sign in to comment.