Yarn upgrade (#2749)
* yarn upgrade front and docs * upgrade yarn server * Revert change not needed
This commit is contained in:
@ -136,7 +136,7 @@ export class ApolloFactory<TCacheShape> implements ApolloManager<TCacheShape> {
|
||||
[
|
||||
errorLink,
|
||||
authLink,
|
||||
...(extraLinks ? extraLinks : []),
|
||||
...(extraLinks || []),
|
||||
isDebugMode ? logger : null,
|
||||
retryLink,
|
||||
httpLink,
|
||||
|
||||
@ -219,7 +219,7 @@ export const ValidationStep = <T extends string>({
|
||||
onRowsChange={updateRow}
|
||||
columns={columns}
|
||||
selectedRows={selectedRows}
|
||||
onSelectedRowsChange={setSelectedRows}
|
||||
onSelectedRowsChange={setSelectedRows as any} // TODO: replace 'any'
|
||||
components={{
|
||||
noRowsFallback: (
|
||||
<StyledNoRowsContainer>
|
||||
@ -235,4 +235,5 @@ export const ValidationStep = <T extends string>({
|
||||
<ContinueButton onContinue={onContinue} title="Confirm" />
|
||||
</>
|
||||
);
|
||||
|
||||
};
|
||||
|
||||
@ -714,7 +714,6 @@ export {
|
||||
IconBrandMercedes,
|
||||
IconBrandMessenger,
|
||||
IconBrandMeta,
|
||||
IconBrandMicrosoftTeams,
|
||||
IconBrandMinecraft,
|
||||
IconBrandMiniprogram,
|
||||
IconBrandMixpanel,
|
||||
@ -813,6 +812,7 @@ export {
|
||||
IconBrandTabler,
|
||||
IconBrandTailwind,
|
||||
IconBrandTaobao,
|
||||
IconBrandTeams,
|
||||
IconBrandTed,
|
||||
IconBrandTelegram,
|
||||
IconBrandTerraform,
|
||||
|
||||
@ -11,7 +11,7 @@ type TimingProfilerProps = {
|
||||
export const TimingProfiler = ({ id, children }: TimingProfilerProps) => {
|
||||
const handleRender = (
|
||||
id: string,
|
||||
phase: 'mount' | 'update',
|
||||
phase: 'mount' | 'update' | 'nested-update',
|
||||
actualDuration: number,
|
||||
baseDuration: number,
|
||||
startTime: number,
|
||||
|
||||
Reference in New Issue
Block a user