Skip to content

Commit

Permalink
Enable textellent in production (#1036)
Browse files Browse the repository at this point in the history
* Enable textellent in production

* Enable textellent in prod

* Re-enable textellent in prod

Co-authored-by: Joe Freund <[email protected]>
  • Loading branch information
jjfreund and Joe Freund authored Apr 3, 2021
1 parent 2f8c327 commit 7e4103e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ const SearchResult = ({ hit, index }) => {
serviceName: hit.name,
serviceId: hit.service_id,
};
const isProduction = true;

const toggleTextingModal = () => setTextingIsOpen(!textingIsOpen);

Expand Down Expand Up @@ -109,7 +108,7 @@ const SearchResult = ({ hit, index }) => {
</div>
)
}
{ !isProduction && texting }
{ texting }
</div>
</div>
);
Expand Down
4 changes: 1 addition & 3 deletions testcafe/texting.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/*
import SearchResultsPage from './pages/SearchResultsPage';
import Texting from './pages/Texting';

Expand Down Expand Up @@ -31,5 +30,4 @@ test('Text info, Basic', async t => {
await t.click(texting.submitButton);
// Check the request fulfilled successfully
// await t.expect(texting.sent.innerText).contains('Sent!');
}); */
});

0 comments on commit 7e4103e

Please sign in to comment.