finish translations

This commit is contained in:
Snazzah
2021-08-31 15:55:18 +00:00
committed by GitHub
parent cb708cc77e
commit 33cc325099
3 changed files with 19 additions and 17 deletions

View File

@@ -8,12 +8,17 @@ interface Props {
username: string;
}
export function TokenRevealModal({ onClose, token,username }: Props) {
export function TokenRevealModal({ onClose, token, username }: Props) {
return (
<Modal
visible={true}
onClose={onClose}
title={`${username}'s Token`}
title={
<Text
id={"app.special.modals.token_reveal"}
fields={{ name: username }}
/>
}
actions={[
{
onClick: onClose,