change page title to summary

This commit is contained in:
Khalim Conn-Kowlessar 2024-04-16 02:28:31 +01:00
parent dd65d40ff1
commit 423cfa6e5c
2 changed files with 3 additions and 1 deletions

View file

@ -62,6 +62,8 @@ const SummaryTable = ({
data: DataItem[];
userPortfolios: { name: string; id: bigint }[];
}) => {
// TODO: Right now a user can ad multiple comparisons of the same column, we should prevent this
const initialColumnSetup = () => {
const initialColumns: ColumnDef<DataItem>[] = [
{

View file

@ -15,7 +15,7 @@ export default async function PortfolioSummary({
return (
<div className="container mx-auto px-4">
<h1 className="text-3xl text-gray-700 font-bold my-4">Overview</h1>
<h1 className="text-3xl text-gray-700 font-bold my-4">Summary</h1>
<SummaryTable data={data} userPortfolios={userPortfolios} />
</div>
);