Skip to content

Commit

Permalink
fix naming on new client switch components
Browse files Browse the repository at this point in the history
  • Loading branch information
buckhalt committed May 6, 2024
1 parent c8e9670 commit c622273
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/AnonymousRecruitmentSwitchClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import SwitchWithOptimisticUpdate from './SwitchWithOptimisticUpdate';
import { setAnonymousRecruitment } from '~/actions/appSettings';

const AnonymousRecruitmentSwitch = ({
const AnonymousRecruitmentSwitchClient = ({
allowAnonymousRecruitment,
}: {
allowAnonymousRecruitment: boolean;
Expand All @@ -16,4 +16,4 @@ const AnonymousRecruitmentSwitch = ({
);
};

export default AnonymousRecruitmentSwitch;
export default AnonymousRecruitmentSwitchClient;
4 changes: 2 additions & 2 deletions components/LimitInterviewsSwitchClient.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Switch from './SwitchWithOptimisticUpdate';
import { setLimitInterviews } from '~/actions/appSettings';

const LimitInterviewsSwitch = ({
const LimitInterviewsSwitchClient = ({
limitInterviews,
}: {
limitInterviews: boolean;
Expand All @@ -15,4 +15,4 @@ const LimitInterviewsSwitch = ({
);
};

export default LimitInterviewsSwitch;
export default LimitInterviewsSwitchClient;

0 comments on commit c622273

Please sign in to comment.