Skip to content

Commit

Permalink
conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
thepiyush-303 committed Dec 25, 2024
1 parent 2003296 commit 526cdc0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Accordion, AccordionItem, Field, FieldLabel, FieldRow, NumberInput, FieldGroup, ToggleSwitch } from '@rocket.chat/fuselage';
import { AccordionItem, Field, FieldLabel, FieldRow, NumberInput, FieldGroup, ToggleSwitch } from '@rocket.chat/fuselage';
import { useUniqueId } from '@rocket.chat/fuselage-hooks';
import React from 'react';
import { Controller, useFormContext } from 'react-hook-form';
Expand All @@ -13,7 +13,7 @@ const PreferencesUserPresenceSection = () => {
const enableAutoAwayId = useUniqueId();

return (
<Accordion.Item title={t('User_Presence')}>
<AccordionItem title={t('User_Presence')}>
<FieldGroup>
<Field>
<FieldRow>
Expand All @@ -36,7 +36,7 @@ const PreferencesUserPresenceSection = () => {
/>
</Field>
</FieldGroup>
</Accordion.Item>
</AccordionItem>
);
};

Expand Down

0 comments on commit 526cdc0

Please sign in to comment.