-
Notifications
You must be signed in to change notification settings - Fork 47
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
feat(drawing): Add PopupDrawingToolbar #644
Conversation
@@ -13,6 +14,8 @@ export default createReducer<DrawingState>(initialState, builder => | |||
.addCase(addDrawingPathGroupAction, (state, { payload }) => { | |||
state.drawnPathGroups.push(payload); | |||
}) | |||
.addCase(resetCreatorAction, () => initialState) // Needed for when `PopupReply` is cancelled |
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.
Should we support a flow where the user cancels their reply but wants to continue working with the existing drawing? Otherwise they'd need to start over again.
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.
I asked this question to product and they said that for now a cancel would start over
b297eca
to
fb88112
Compare
fb88112
to
91bafbc
Compare
86662ca
to
0d1cb65
Compare
TODO: