Skip to content

Commit

Permalink
Fix render function in App component
Browse files Browse the repository at this point in the history
  • Loading branch information
alileza committed Mar 6, 2024
1 parent 6a278ca commit ec9a18d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions portal/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
{
title: 'Action',
key: 'action',
render: (text: string, record: any) => (
render: (_text: string, record: any) => (
editableKey === record.key ? (
<Space>
<Button type="primary" onClick={() => handleSave(record.key)}>Save</Button>
Expand All @@ -151,7 +151,7 @@
}));

return (
<ConfigProvider theme="dark">
<ConfigProvider>
<div style={{ padding: "0px 30px" }}>
<h1 className="title is-1">trde.link</h1>
<h5 className="subtitle is-5">powered by <a href="https://github.com/alileza/bridge">bridge</a></h5>
Expand Down

0 comments on commit ec9a18d

Please sign in to comment.