-
Notifications
You must be signed in to change notification settings - Fork 258
Use the latest version of actions/checkout
#6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -27,7 +27,7 @@ export default function AppearanceToggleDropdown({ className = '', ...props }: H | |||
<span className="sr-only">Toggle theme</span> | |||
</Button> | |||
</DropdownMenuTrigger> | |||
<DropdownMenuContent align="end" rounded="xl"> | |||
<DropdownMenuContent align="end"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -283,7 +283,7 @@ export default function Welcome() { | |||
</main> | |||
|
|||
<footer className="py-16 text-center text-sm text-black dark:text-white/70"> | |||
Laravel v{laravelVersion} (PHP v{phpVersion}) | |||
Laravel v{laravelVersion as string} (PHP v{phpVersion as string}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -12,7 +12,7 @@ export function NavMain({ items = [] }: { items: NavItem[] }) { | |||
<SidebarMenuItem key={item.title}> | |||
<SidebarMenuButton asChild isActive={item.url === page.url}> | |||
<Link href={item.url} prefetch> | |||
<item.icon /> | |||
{item.icon && <item.icon />} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tnylea There is an error in |
Thanks @avosalmon! I got the I'll chat more with ya on Slack 😉 |
This PR updates
actions/checkout
in GitHub Actions and fixes some TS errors.