Skip to content

Commit

Permalink
Fix project table row click navigation + remove 'z' from connect wall…
Browse files Browse the repository at this point in the history
…et button (#432)
  • Loading branch information
juancwu authored Feb 5, 2025
2 parents 454321f + 5d70933 commit 9644c1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/tables/ProjectsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export const ProjectsTable: React.FC<ProjectsTableProps> = ({
});

const handleRowClick = (projectId: string) => {
navigate({ to: `/admin/projects/${projectId}` });
navigate({ to: `/admin/projects/${projectId}/overview` });
};

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ function RouteComponent() {
<button
onClick={() => wallet.select('Suiet')}
className="px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100 rounded-md hover:bg-gray-200 flex items-center gap-2"
>z
>
Connect Wallet
</button>
) : (
Expand Down

0 comments on commit 9644c1b

Please sign in to comment.