bugfixing

This commit is contained in:
MuslemRahimi 2024-12-28 16:45:46 +01:00
parent b79131bbca
commit daac53e5c6
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ export const load = async ({ locals }) => {
const getData = async () => { const getData = async () => {
const { apiKey, apiURL, user } = locals; const { apiKey, apiURL, user } = locals;
const response = await fetch(apiURL + "/sector-flow", { const response = await fetch(apiURL + "/market-flow", {
method: "GET", method: "GET",
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",

View File

@ -565,7 +565,7 @@
<TableHeader {columns} {sortOrders} {sortData} /> <TableHeader {columns} {sortOrders} {sortData} />
</thead> </thead>
<tbody> <tbody>
{#each stockList as item, index} {#each stockList as item}
<tr <tr
class="sm:hover:bg-[#245073] border-b border-gray-800 sm:hover:bg-opacity-[0.2] odd:bg-odd" class="sm:hover:bg-[#245073] border-b border-gray-800 sm:hover:bg-opacity-[0.2] odd:bg-odd"
> >