-
Notifications
You must be signed in to change notification settings - Fork 82
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: add set resolver step #3024
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Pull Request Test Coverage Report for Build 7673270071
💛 - Coveralls |
@@ -278,6 +281,12 @@ export function ensReducer(state: ENSState = INITIAL_STATE, action: ENSReducerAc | |||
error: { ...action.payload.error } | |||
} | |||
} | |||
case CLEAR_ENS_ERRORS: { |
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.
Would you mind adding a test for the reduction of this action?
src/modules/analytics/sagas.ts
Outdated
@@ -231,3 +233,7 @@ function* handleDeployToWorldSuccess(action: DeployToWorldSuccessAction) { | |||
|
|||
yield call(track, '[Success] Deploy to World', { project_id: project.id, eth_address: ethAddress, subdomain: deployment.world }) | |||
} | |||
|
|||
function* handleSetENSAddressSuccess(action: SetENSAddressSuccessAction) { | |||
yield call(track, 'Map Address to Name', { name: action.payload.ens.name, address: action.payload.address }) |
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.
Would you mind moving this track code to the /src/modules/analytics/track.ts
file if possible?
…builder into feat/add-set-resolver-step
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.
🚀
Add tracking event for address assignation to ens
Add set resolver step