Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix subscription success page #636

Merged
merged 2 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
errorReport += ` And here are technical details about the error: \`\`\`${error.stack}\`\`\``
try {
crisp.openAndShowChat(errorReport)
crisp.showMessage(`Hi there, we're very sorry to hear you experienced an issue with NoteForms.
crisp.showMessage(`Hi there, we're very sorry to hear you experienced an issue with OpnForm.
We'll be in touch about it very soon! In the meantime, I recommend that you try going back one step, and save your changes.`, 2000)
} catch (e) {
console.error('Crisp error', e)
Expand Down
2 changes: 1 addition & 1 deletion client/pages/home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
<template #description>
<div class="flex flex-wrap sm:flex-nowrap gap-4 items-start">
<p class="flex-grow">
Remove NoteForms branding, customize forms further, use your custom domain, integrate with your
Remove OpnForm branding, customize forms further, use your custom domain, integrate with your
favorite tools, invite users, and more!
</p>
<UButton
Expand Down
2 changes: 1 addition & 1 deletion client/pages/subscriptions/success.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const redirectIfSubscribed = () => {
}
const checkSubscription = () => {
// Fetch the user.
return noteFormsFetch('user').then((data) => {
return opnFetch('user').then((data) => {
authStore.setUser(data)
redirectIfSubscribed()
}).catch((error) => {
Expand Down
Loading