Skip to content

Commit

Permalink
fix: fixing missing arguments for build failing
Browse files Browse the repository at this point in the history
  • Loading branch information
nevo-david committed Sep 20, 2024
1 parent 3a785e1 commit 9334f20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/frontend/src/components/layout/continue.provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export const ContinueProvider: FC = () => {
date: dayjs(),
value: [],
integration: {
time: [{time: 0}],
id: continueId,
type: '',
name: '',
Expand Down
3 changes: 2 additions & 1 deletion apps/frontend/src/components/onboarding/connect.channels.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { useVariables } from '@gitroom/react/helpers/variable.context';

export const ConnectChannels: FC = () => {
const fetch = useFetch();
const {isGeneral} = useVariables();
const { isGeneral } = useVariables();
const router = useRouter();
const [identifier, setIdentifier] = useState<any>(undefined);
const [popup, setPopups] = useState<undefined | string[]>(undefined);
Expand Down Expand Up @@ -242,6 +242,7 @@ export const ConnectChannels: FC = () => {
{integration.name}
</div>
<Menu
mutate={mutate}
onChange={update}
id={integration.id}
canEnable={
Expand Down

0 comments on commit 9334f20

Please sign in to comment.