Skip to content

Commit

Permalink
Merge pull request #69 from jgodson/remove-feedback-link
Browse files Browse the repository at this point in the history
remove feedback link
  • Loading branch information
jgodson authored Nov 10, 2022
2 parents 3c42606 + 4623dd5 commit ee48f8f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 12 deletions.
10 changes: 1 addition & 9 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -600,14 +600,6 @@ ${INDENT[this.IL]})`;
onAction: this.reset
};

const reportIssue = {
content: 'Leave feedback',
icon: ChatMajorMonotone,
external: true,
plain: true,
url: 'https://docs.google.com/forms/d/e/1FAIpQLSdBHeVvdU92fc8vsqRuvx5uWuYQFsW8U3Co5HDIusH8YEH_VA/viewform'
}

const secondaryActions = [
{
content: 'Export campaigns',
Expand Down Expand Up @@ -645,7 +637,7 @@ ${INDENT[this.IL]})`;
};

return (
<Page title="Shopify Script Creator" secondaryActions={secondaryActions} primaryAction={reportIssue}>
<Page title="Shopify Script Creator" secondaryActions={secondaryActions}>
{this.state.modal.isOpen &&
<Modal
title={this.state.modal.title}
Expand Down
4 changes: 2 additions & 2 deletions src/components/ErrorPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export default function ErrorPage() {
<p>
An error occured. To help fix it, let me know how it occured by
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSdBHeVvdU92fc8vsqRuvx5uWuYQFsW8U3Co5HDIusH8YEH_VA/viewform?usp=pp_url&entry.1591633300=Bug+Report"
href="https://github.com/jgodson/shopify-script-creator/issues/new"
target="_blank"
>
<span> leaving feedback</span>
<span> creating an issue on GitHub</span>
</a>
.
</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/InfoBanner.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default class InfoBanner extends React.Component {

onDismiss={this.dismissBanner}
>
<p>Please note that this app is not developed by Shopify. Please do not contact Shopify Support for help, instead use the <strong>Leave feedback</strong> link below.</p>
<p>Please note that this app is not developed by Shopify. Please do not contact Shopify Support for help.</p>
</Banner>
</div>
)
Expand Down

0 comments on commit ee48f8f

Please sign in to comment.