fix: Settings screen cleanup

This commit is contained in:
Tom Moor
2019-06-25 21:53:23 -07:00
parent 7aea6458ce
commit b93824915d
5 changed files with 19 additions and 14 deletions

View File

@@ -16,7 +16,7 @@ const TokenListItem = ({ token, onDelete }: Props) => {
title={token.name}
subtitle={<code>{token.secret}</code>}
actions={
<Button onClick={() => onDelete(token.id)} light>
<Button onClick={() => onDelete(token.id)} neutral>
Revoke
</Button>
}