-
Notifications
You must be signed in to change notification settings - Fork 3
Remove zendesk and add monday feedback #3015
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
Conversation
1702ea0 to
e7994a2
Compare
app/Base/index.tsx
Outdated
| } | ||
|
|
||
| function Base() { | ||
| const [mondayFormVisible, setMondayFormVisible] = useState(false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use useModalState
e7994a2 to
beb5c82
Compare
app/Base/index.tsx
Outdated
| <div className={styles.formContent}> | ||
| <div className={styles.formTopBar}> | ||
| <p>Leave us a message</p> | ||
| <Button |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use QuickActionButton
app/Base/index.tsx
Outdated
| className={styles.zendeskHelpButton} | ||
| onClick={openZendeskFeedback} | ||
| onClick={openMondayForm} | ||
| type="button" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not necessary
app/Base/index.tsx
Outdated
| const openMondayForm = () => { | ||
| setMondayFormVisible(); | ||
| }; | ||
|
|
||
| const closeMondayForm = () => { | ||
| setMondayFormHidden(); | ||
| }; | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are not necessary and can be used directly
beb5c82 to
99e17b9
Compare
Changes
This PR doesn't introduce any:
console.logmeant for debuggingThis PR contains valid: