Skip to content

Commit 8ecb106

Browse files
authored
Merge branch 'main' into subtler-tab-styling
2 parents 0199e28 + 587c228 commit 8ecb106

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/gatsby-theme-iterative/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dvcorg/gatsby-theme-iterative",
3-
"version": "0.2.6",
3+
"version": "0.2.7",
44
"description": "",
55
"main": "index.js",
66
"types": "src/typings.d.ts",

packages/gatsby-theme-iterative/src/components/LayoutHeader/Alert/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { AlertContent } from './content'
55

66
import * as styles from './styles.module.css'
77

8-
const LayoutAlert: React.FC<{ collapsed: boolean }> | false = ({
9-
collapsed
8+
const LayoutAlert: React.FC<{ collapsed?: boolean }> = ({
9+
collapsed = false
1010
}) => (
1111
<div
1212
className={cn(

0 commit comments

Comments
 (0)