Skip to content

Commit

Permalink
Merge pull request singnet#897 from singnet/bug-fixing
Browse files Browse the repository at this point in the history
[SPT-221] fixed display of service contact information
  • Loading branch information
MarinaFedy authored Mar 11, 2024
2 parents 6a61d30 + be05a15 commit e6ca278
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
yarn.lock
package-lock.json

# Runtime data
pids
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"web3": "1.0.0-beta.52"
},
"scripts": {
"start": "react-scripts start",
"start": "react-scripts --openssl-legacy-provider start",
"build": "npm run sitemap && react-scripts --max_old_space_size=8192 build",
"test": "react-scripts test",
"eject": "react-scripts eject",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ export const useStyles = makeStyles(theme => ({
"@media(max-width: 548px)": { margin: "15px 0 0" },
},
iconsContainer: {
minHeight: 34,
display: "flex",
alignItems: "center",
justifyContent: "flex-end",
Expand All @@ -73,7 +74,7 @@ export const useStyles = makeStyles(theme => ({
cursor: "pointer",
"& span": {
color: theme.palette.text.lightShadedGray,
fontSize: 17,
fontSize: 18,
},
},
"@media(max-width: 768px)": { paddingTop: 15 },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ const Contacts = ({ contacts, show, handleClose, classes }) => {
<ListItem alignItems="flex-start" divider>
<ListItemText
primary="Support email"
secondary={supportContact.email_id}
secondary={supportContact.email}
secondaryTypographyProps={{
component: "a",
href: `mailTo:${supportContact.email_id}`,
href: `mailTo:${supportContact.email}`,
target: "_blank",
rel: "noopener noreferrer",
className: classes.anchor,
Expand Down

0 comments on commit e6ca278

Please sign in to comment.