mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-20 13:28:20 +02:00
Fix button text for submit button in add twitter account dialog (#1757)
* Fix button text for submit button in add twitter account dialog * Update frontend build
This commit is contained in:
parent
6c40891ad8
commit
ec6b2e17bd
7 changed files with 15 additions and 15 deletions
|
|
@ -139,7 +139,7 @@ export default function AddTwitterAccountDialog({
|
|||
);
|
||||
}
|
||||
|
||||
function CreateContactProfilButton() {
|
||||
function AddTwitterAccountButton() {
|
||||
return (
|
||||
<Button
|
||||
type="submit"
|
||||
|
|
@ -147,7 +147,7 @@ export default function AddTwitterAccountDialog({
|
|||
color="primary"
|
||||
className={classes.button}
|
||||
>
|
||||
Create Contact Profile
|
||||
Add Twitter Account
|
||||
</Button>
|
||||
);
|
||||
}
|
||||
|
|
@ -162,7 +162,7 @@ export default function AddTwitterAccountDialog({
|
|||
</DialogContent>
|
||||
<DialogActions>
|
||||
{CancelButton()}
|
||||
{CreateContactProfilButton()}
|
||||
{AddTwitterAccountButton()}
|
||||
</DialogActions>
|
||||
</form>
|
||||
</Dialog>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue