fix: fixing missing arguments for build failing
This commit is contained in:
parent
3a785e1144
commit
9334f20f61
|
|
@ -82,6 +82,7 @@ export const ContinueProvider: FC = () => {
|
|||
date: dayjs(),
|
||||
value: [],
|
||||
integration: {
|
||||
time: [{time: 0}],
|
||||
id: continueId,
|
||||
type: '',
|
||||
name: '',
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
@ -242,6 +242,7 @@ export const ConnectChannels: FC = () => {
|
|||
{integration.name}
|
||||
</div>
|
||||
<Menu
|
||||
mutate={mutate}
|
||||
onChange={update}
|
||||
id={integration.id}
|
||||
canEnable={
|
||||
|
|
|
|||
Loading…
Reference in New Issue