From af04a074d950cc9777183e5d62038e740c740585 Mon Sep 17 00:00:00 2001 From: Konstantin Schaper Date: Thu, 6 Aug 2020 21:59:30 +0200 Subject: [PATCH] fix typo --- .../src/users/components/publicKeys/PublicKeyTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui/ui-webapp/src/users/components/publicKeys/PublicKeyTable.tsx b/scm-ui/ui-webapp/src/users/components/publicKeys/PublicKeyTable.tsx index 2270f10825..3172b1429a 100644 --- a/scm-ui/ui-webapp/src/users/components/publicKeys/PublicKeyTable.tsx +++ b/scm-ui/ui-webapp/src/users/components/publicKeys/PublicKeyTable.tsx @@ -33,7 +33,7 @@ type Props = { onDelete: (link: string) => void; }; -const PublicKeyTable: FC = ({ publicKeys, onDelete, onDownload }) => { +const PublicKeyTable: FC = ({ publicKeys, onDelete }) => { const [t] = useTranslation("users"); if (publicKeys?._embedded?.keys?.length === 0) {