feat: readd for you column

This commit is contained in:
2024-04-04 13:47:15 +07:00
parent 174b28f1a7
commit 999073f84c
34 changed files with 984 additions and 647 deletions

View File

@@ -19,7 +19,7 @@ const DEFAULT_COLUMNS: LumeColumn[] = [
];
function Screen() {
const search = Route.useSearch();
const { account } = Route.useParams();
const vlistRef = useRef<VListHandle>(null);
const [columns, setColumns] = useState(DEFAULT_COLUMNS);
@@ -139,8 +139,7 @@ function Screen() {
<Col
key={column.id}
column={column}
// @ts-ignore, yolo !!!
account={search.acccount}
account={account}
isScroll={isScroll}
/>
))}