Skip to content

Commit

Permalink
chore: review updates
Browse files Browse the repository at this point in the history
  • Loading branch information
canerakdas committed Dec 28, 2024
1 parent 980cacc commit 6394613
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const PrebuiltDownloadButtons: FC = () => {
: '';

return (
<div className="my-4 flex flex-col flex-wrap gap-2 sm:flex-row">
<div className="my-4 flex flex-col gap-2 sm:flex-row">
<Skeleton
loading={os === 'LOADING' || platform === ''}
hide={OS_NOT_SUPPORTING_INSTALLERS.includes(os)}
Expand Down
7 changes: 3 additions & 4 deletions apps/site/layouts/GlowingBackdrop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ type GlowingBackdropLayoutProps = PropsWithChildren<{
kind?: 'home' | 'default';
}>;

const GlowingBackdropLayout: FC<GlowingBackdropLayoutProps> = ({
kind = 'home',
children,
}) => (
const GlowingBackdropLayout: FC<
PropsWithChildren<GlowingBackdropLayoutProps>
> = ({ kind = 'home', children }) => (
<>
<WithNavBar />
<div className={styles.centeredLayout}>
Expand Down

0 comments on commit 6394613

Please sign in to comment.