Skip to content

Commit

Permalink
feat: improve release script
Browse files Browse the repository at this point in the history
  • Loading branch information
0xzio committed Nov 20, 2024
1 parent 7936af8 commit 37abdc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Create docker images
on:
push:
branches:
- main
- release

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion app/(blog)/(home)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { PropsWithChildren } from 'react'

export default function Layout({ children }: PropsWithChildren) {
return <>{children}</>
return <div className="overflow-x-hidden">{children}</div>
}

0 comments on commit 37abdc8

Please sign in to comment.