Skip to content

Commit

Permalink
MBMS-58072 initial commit and fix implementation with prod flags (#31846
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jordanBoardmanCodes authored Sep 10, 2024
1 parent 16a9fe6 commit 52c93b2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import moment from 'moment';
import { connect } from 'react-redux';
import environment from 'platform/utilities/environment';

import scrollToTop from 'platform/utilities/ui/scrollToTop';
import { focusElement } from 'platform/utilities/ui';
Expand All @@ -18,9 +19,13 @@ class ConfirmationPage extends React.Component {

return (
<div>
<h3 className="confirmation-page-title">
You’ve submitted your application
</h3>
{environment.isProduction() ? (
<h3 className="confirmation-page-title">
You’ve submitted your application
</h3>
) : (
<h3>You’ve submitted your application</h3>
)}
<p>
You’ll receive a confirmation email shortly. We’ll let you know by
mail or phone if we need more details.
Expand Down
11 changes: 8 additions & 3 deletions src/applications/pre-need/containers/ConfirmationPage.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import moment from 'moment';
import { connect } from 'react-redux';
import environment from 'platform/utilities/environment';

import scrollToTop from 'platform/utilities/ui/scrollToTop';
import { focusElement } from 'platform/utilities/ui';
Expand All @@ -18,9 +19,13 @@ class ConfirmationPage extends React.Component {

return (
<div>
<h2 className="confirmation-page-title">
Your claim has been submitted.
</h2>
{environment.isProduction() ? (
<h2 className="confirmation-page-title">
Your claim has been submitted.
</h2>
) : (
<h3>Your claim has been submitted.</h3>
)}
<p>
We’ll let you know by mail or phone if we need more information.
<br />
Expand Down

0 comments on commit 52c93b2

Please sign in to comment.