Fix contact url (#350)

* Fix contact url

* Remove TODO
This commit is contained in:
William O'Beirne 2019-03-13 15:20:54 -04:00 committed by Daniel Ternyak
parent 73d087bda7
commit 4773c4a4ac
1 changed files with 1 additions and 2 deletions

View File

@ -46,13 +46,12 @@ class ProfileContribution extends React.Component<Props> {
);
} else if (isExpired) {
tag = <Tag color="red">Expired</Tag>;
// TODO: Link to support
actions = (
<>
<Popconfirm title="Are you sure?" onConfirm={this.deleteContribution}>
<a>Delete</a>
</Popconfirm>
<Link to="/support">Contact support</Link>
<Link to="/contact">Contact support</Link>
</>
);
} else {