Skip to content

Commit

Permalink
simplify pro account error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
kfarr committed Jun 14, 2024
1 parent 91d59ff commit dc184ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ const AddLayerPanel = ({ onClose, isAddLayerPanelOpen }) => {
const cardClick = (card, isProUser) => {
if (card.requiresPro && !isProUser) {
STREET.notify.errorMessage(
`A Pro account is required for this entity. Please contact kieran[email protected] for pro access.`
`Pro account required to add this layer, contact kieran@3dstreet.org for access`
);
} else if (card.mixinId) {
createEntity(card.mixinId);
Expand Down
2 changes: 1 addition & 1 deletion src/editor/components/scenegraph/Toolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export default class Toolbar extends Component {
streetGeo['longitude']
) {
STREET.notify.errorMessage(
`Geospatial Pro account required to save 3DStreet Cloud scenes with 'longitude' and 'latitude' geolocation. You may download a '.3dstreet.json' file instead.`
`Pro account required to save scenes with geolocation, contact kieran@3dstreet.org for access`
);
return;
}
Expand Down

0 comments on commit dc184ea

Please sign in to comment.