removed await

This commit is contained in:
Robert 2024-03-08 05:34:41 +07:00
parent d656e0170b
commit 041eda05e5
No known key found for this signature in database
GPG Key ID: F631C7FD957D5F22

View File

@ -3,7 +3,7 @@ import { chainSchema } from "../schema";
import { getAxios } from "@/shared/lib/getAxios";
export async function getChainList() {
const axios = await getAxios();
const axios = getAxios();
try {
const response = await axios.get("/chain/list");