Skip to content

Commit 9334f20

Browse files
author
Nevo David
committed
fix: fixing missing arguments for build failing
1 parent 3a785e1 commit 9334f20

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

apps/frontend/src/components/layout/continue.provider.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ export const ContinueProvider: FC = () => {
8282
date: dayjs(),
8383
value: [],
8484
integration: {
85+
time: [{time: 0}],
8586
id: continueId,
8687
type: '',
8788
name: '',

apps/frontend/src/components/onboarding/connect.channels.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { useVariables } from '@gitroom/react/helpers/variable.context';
2121

2222
export const ConnectChannels: FC = () => {
2323
const fetch = useFetch();
24-
const {isGeneral} = useVariables();
24+
const { isGeneral } = useVariables();
2525
const router = useRouter();
2626
const [identifier, setIdentifier] = useState<any>(undefined);
2727
const [popup, setPopups] = useState<undefined | string[]>(undefined);
@@ -242,6 +242,7 @@ export const ConnectChannels: FC = () => {
242242
{integration.name}
243243
</div>
244244
<Menu
245+
mutate={mutate}
245246
onChange={update}
246247
id={integration.id}
247248
canEnable={

0 commit comments

Comments
 (0)