diff --git a/core/src/components.d.ts b/core/src/components.d.ts index 7a531851bb..3e89dd9440 100644 --- a/core/src/components.d.ts +++ b/core/src/components.d.ts @@ -2171,7 +2171,7 @@ declare global { interface IonSkeletonText { /** - * The width of the element. Defaults to: `"100%"`. + * Width for the element to render at. Default is 100% */ 'width': string; } @@ -5763,7 +5763,7 @@ declare global { export interface IonSkeletonTextAttributes extends HTMLAttributes { /** - * The width of the element. Defaults to: `"100%"`. + * Width for the element to render at. Default is 100% */ 'width'?: string; } diff --git a/core/src/components/item/item.tsx b/core/src/components/item/item.tsx index 8b0b18d2d7..d4cca35c3b 100644 --- a/core/src/components/item/item.tsx +++ b/core/src/components/item/item.tsx @@ -146,8 +146,6 @@ export class Item { const attrs = TagType === 'button' ? { type } : { href }; const showDetail = detail != null ? detail : mode === 'ios' && clickable; - console.log('item state', state); - return (