Skip to content

Commit

Permalink
remove hint wording from profile (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
januschung authored Feb 16, 2025
1 parent f5ab331 commit e6e4910
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
name: Deploy to Demo Server

on:
push:
pull_request:
types:
- closed
branches:
- main

Expand Down
5 changes: 1 addition & 4 deletions src/components/ProfileDialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Dialog from '@mui/material/Dialog';
import DialogActions from '@mui/material/DialogActions';
import DialogContent from '@mui/material/DialogContent';
import DialogTitleBar from './DialogTitleBar'
import { Typography, Grid } from '@mui/material';
import { Grid } from '@mui/material';
import { UPDATE_PROFILE } from '../graphql/mutation';
import { GET_PROFILE } from '../graphql/query';
import ProfileTextField from './ProfileTextField';
Expand Down Expand Up @@ -102,9 +102,6 @@ export default function ProfileDialog({ profile, handleClose, open, setOpen }) {
/>
))}
</Grid>
<Typography variant="overline" align="right" paragraph>
* Click the copy icon to copy to clipboard
</Typography>
</DialogContent>
<DialogActions>
<Button color="info" variant="outlined" startIcon={<CancelIcon />} onClick={handleClose}>
Expand Down

0 comments on commit e6e4910

Please sign in to comment.