Skip to content

Commit

Permalink
refactor(actions): use string for GLOSSARY_TERMS_FAILURE
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmason committed Sep 22, 2017
1 parent 63abc9d commit 184d6ea
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -6,7 +6,7 @@ export const GLOSSARY_TERMS_REQUEST = 'GLOSSARY_TERMS_REQUEST'
/* API request for glossary search has completed successfully. */
export const GLOSSARY_TERMS_SUCCESS = 'GLOSSARY_TERMS_SUCCESS'
/* API request for glossary search has failed. */
export const GLOSSARY_TERMS_FAILURE = Symbol('GLOSSARY_TERMS_FAILURE')
export const GLOSSARY_TERMS_FAILURE = 'GLOSSARY_TERMS_FAILURE'

/* Indicates the index in glossary results that should have details displayed */
export const SET_GLOSSARY_DETAILS_INDEX = Symbol('SET_GLOSSARY_DETAILS_INDEX')
Expand Down

0 comments on commit 184d6ea

Please sign in to comment.