Fixing filenames
This commit is contained in:
parent
52784ffc85
commit
5313c10401
@ -5,7 +5,7 @@ export default async function BackOfficeUsersPage() {
|
||||
process.env.NEXT_PUBLIC_BASE_URL || process.env.VERCEL_URL
|
||||
? `https://${process.env.VERCEL_URL}`
|
||||
: "http://localhost:3000";
|
||||
const res = await fetch(`${baseUrl}/api/dashboard/admin/users`, {
|
||||
const res = await fetch(`${baseUrl}ss/api/dashboard/admin/users`, {
|
||||
cache: "no-store", // 👈 disables caching for SSR freshness
|
||||
});
|
||||
const users = await res.json();
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
import { Approve } from "@/app/features/pages/Approve/Approve";
|
||||
|
||||
|
||||
export default function ApprovePage() {
|
||||
return (
|
||||
<div>
|
||||
|
||||
@ -6,7 +6,7 @@ import { FetchReport } from "../../FetchReports/FetchReports";
|
||||
import { Documentation } from "../../Documentation/Documentation";
|
||||
import { AccountIQ } from "../../AccountIQ/AccountIQ";
|
||||
import { WhatsNew } from "../../WhatsNew/WhatsNew";
|
||||
import { TransactionsOverView } from "../../TransactionsOverView/TransactionsOverview";
|
||||
import { TransactionsOverView } from "../../TransactionsOverview/TransactionsOverview";
|
||||
|
||||
export const DashboardHomePage = () => {
|
||||
return (
|
||||
|
||||
@ -23,7 +23,6 @@ import SearchFilters from "@/app/components/searchFilter/SearchFilters";
|
||||
import { exportData } from "@/app/utils/exportData";
|
||||
import { ITransaction } from "./types";
|
||||
|
||||
|
||||
const paginationModel = { page: 0, pageSize: 50 };
|
||||
|
||||
interface IDepositProps {
|
||||
|
||||
@ -25,8 +25,9 @@ interface IDepositTransactionsSearchLabels {
|
||||
options?: string[];
|
||||
}
|
||||
|
||||
|
||||
export interface ITransaction {
|
||||
filteredTransactions: IFilteredTransactions[];
|
||||
transactionsColumns: IDepositTransactionsColumns[];
|
||||
transactionsSearchLabels: IDepositTransactionsSearchLabels[];
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user