We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96efb23 commit bf59572Copy full SHA for bf59572
src/shared/components/Settings/ExperienceAndSkills/WorkSkills/Skills/AddSkillsModal/index.jsx
@@ -26,10 +26,15 @@ export default function AddSkillsModal({
26
onSave,
27
setEditingSkills,
28
}) {
29
+ let category;
30
const [tempStr, setTempStr] = React.useState('');
31
const [tab, setTab] = React.useState(intialCategory);
32
const [displayingSkills, setDisplayingSkills] = React.useState([]);
- const category = tab;
33
+ if (process.env.NODE_ENV === 'production') {
34
+ category = tab.toUpperCase();
35
+ } else {
36
+ category = tab;
37
+ }
38
39
// onInit
40
React.useEffect(() => {
0 commit comments