mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
change page title to summary
This commit is contained in:
parent
dd65d40ff1
commit
423cfa6e5c
2 changed files with 3 additions and 1 deletions
|
|
@ -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>[] = [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue