Skip to content

Commit 6d05d2f

Browse files
Vinay VkVinay Vk
authored andcommitted
Fix: Remove console.log and fix ternary syntax error
1 parent f8b6b6b commit 6d05d2f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/components/Collaboration/JobFormbuilder.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,10 @@ function JobFormBuilder() {
293293
</select>
294294
</div>
295295
</div>
296-
{console.log(role)}
296+
297297
<h1 className={styles.jobformTitle}>JOB FORM BUILDER</h1>
298-
{role === 'Owner' || role === 'Administrator' ? (
298+
299+
{(role === 'Owner' || role === 'Administrator') && (
299300
<div className={styles.customForm}>
300301
<p className={styles.jobformDesc}>
301302
Use this form to create and edit question sets for job applications. Choose a

0 commit comments

Comments
 (0)