Skip to content

Commit

Permalink
fix: conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabhdaware committed Dec 9, 2024
2 parents add73de + fa0c45e commit 7cbdb75
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/blade/src/components/BaseMotion/BaseMotion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ const _BaseMotionBox = (
isInsideStaggerContainer ? staggerType : type,
);

console.count('BaseMotionBox');

return (
<MotionDiv
ref={ref as never}
Expand Down
1 change: 1 addition & 0 deletions packages/blade/src/components/Fade/Fade.native.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import type { FadeProps } from './types';
import type { BaseMotionEntryExitProps } from '~components/BaseMotion';
import { Text } from '~components/Typography';
import { throwBladeError } from '~utils/logger';
import type { FadeProps } from './types';

const Fade = (_props: FadeProps): React.ReactElement => {
throwBladeError({
Expand Down
1 change: 1 addition & 0 deletions packages/blade/src/components/Fade/Fade.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import type { MotionVariantsType } from '~components/BaseMotion';
import { castWebType, useTheme } from '~utils';
import { cssBezierToArray } from '~utils/cssBezierToArray';
import { msToSeconds } from '~utils/msToSeconds';
import type { FadeProps } from './types';

/**
* ## Fade
Expand Down
6 changes: 5 additions & 1 deletion packages/blade/src/components/Scale/Scale.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,9 @@ Default.args = {

export const Controlled = ControlledScaleTemplate.bind({});
Controlled.args = {
children: <InternalCardExample />,
children: (
<Box display="inline-block">
<InternalCardExample />
</Box>
),
};

0 comments on commit 7cbdb75

Please sign in to comment.