From e06d1766c058e8aa9c732f42867d63bb34e8ad12 Mon Sep 17 00:00:00 2001 From: sktoiva Date: Wed, 14 Mar 2018 10:11:56 +0200 Subject: [PATCH] Fix transition code for first provider review --- src/util/types.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/types.js b/src/util/types.js index b03a75a8..a7de323d 100644 --- a/src/util/types.js +++ b/src/util/types.js @@ -221,7 +221,7 @@ export const TRANSITION_COMPLETE = 'transition/complete'; // Reviews are given through transaction transitions. Review 1 can be // by provider or customer, and review 2 will be the other party of // the transaction. -export const TRANSITION_REVIEW_1_BY_PROVIDER = 'transition/review-1_by-provider'; +export const TRANSITION_REVIEW_1_BY_PROVIDER = 'transition/review-1-by-provider'; export const TRANSITION_REVIEW_2_BY_PROVIDER = 'transition/review-2-by-provider'; export const TRANSITION_REVIEW_1_BY_CUSTOMER = 'transition/review-1-by-customer'; export const TRANSITION_REVIEW_2_BY_CUSTOMER = 'transition/review-2-by-customer';