Skip to content

Commit

Permalink
feat: enable new feedback template (#2290)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaliakseyenka authored Sep 8, 2023
1 parent a8be7ba commit 38d2b64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/components/Profile/PrescreeningFeedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function SkillSection({
if (!skills) return null;

return (
<Space direction="vertical" style={{ marginBottom: 20 }}>
<Space direction="vertical" style={{ marginBottom: 20, width: '100%' }}>
<Title level={4}>{title}</Title>
<SkillTable skills={skills.questions as InterviewQuestion[]} tooltips={tooltips} />
{skills.comment && (
Expand Down
2 changes: 1 addition & 1 deletion client/src/services/features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ export function initializeFeatures(query: Record<string, string | string[] | und

function getInitialFeatureToggles() {
return {
feedback: false,
feedback: true,
};
}

0 comments on commit 38d2b64

Please sign in to comment.