* feat: handle URLs with or without trailing slash (#803) * feat: handle URLs with or without trailing slash * tidy: cleanup slashes * Fix docker build (#805) * fix: fixed the docker build * tidy: cleanup * env: remove env contents (#808) * Portfolio fix (#809) * fix: fixed the portfolio account detail page layout * fix: fixed portfolio cards * tidy: refactor * align buttons, perps row clickable (#807) * align buttons, perps row clickable * fix comments * update to v2.2.4 * fix borrowbutton logic, add vault deposit manage btn, fix icon size vault modal --------- Co-authored-by: Linkie Link <linkielink.dev@gmail.com> --------- Co-authored-by: Bob van der Helm <34470358+bobthebuidlr@users.noreply.github.com>
23 lines
523 B
TypeScript
23 lines
523 B
TypeScript
import React from 'react'
|
|
|
|
import Table from 'components/common/Table'
|
|
import useDepositedColumns from 'components/earn/farm/Table/Columns/useDepositedColumns'
|
|
|
|
type Props = {
|
|
data: DepositedVault[]
|
|
isLoading: boolean
|
|
}
|
|
|
|
export default function DepositedVaultsTable(props: Props) {
|
|
const columns = useDepositedColumns({ isLoading: props.isLoading })
|
|
|
|
return (
|
|
<Table
|
|
title='Deposited Vaults'
|
|
columns={columns}
|
|
data={props.data}
|
|
initialSorting={[{ id: 'name', desc: true }]}
|
|
/>
|
|
)
|
|
}
|