Skip to content

Commit

Permalink
use named dashboard route (#106)
Browse files Browse the repository at this point in the history
Co-authored-by: Hamlet <[email protected]>
  • Loading branch information
hamlet96 and Hamlet authored Oct 31, 2021
1 parent c5f533b commit 0c7e12f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stubs/inertia-react/resources/js/Pages/Welcome.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function Welcome(props) {
<div className="relative flex items-top justify-center min-h-screen bg-gray-100 dark:bg-gray-900 sm:items-center sm:pt-0">
<div className="fixed top-0 right-0 px-6 py-4 sm:block">
{props.auth.user ? (
<Link href="/dashboard" className="text-sm text-gray-700 underline">
<Link href={route('dashboard')} className="text-sm text-gray-700 underline">
Dashboard
</Link>
) : (
Expand Down
2 changes: 1 addition & 1 deletion stubs/inertia-vue/resources/js/Pages/Welcome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<div class="relative flex items-top justify-center min-h-screen bg-gray-100 dark:bg-gray-900 sm:items-center sm:pt-0">
<div v-if="canLogin" class="hidden fixed top-0 right-0 px-6 py-4 sm:block">
<Link v-if="$page.props.auth.user" href="/dashboard" class="text-sm text-gray-700 underline">
<Link v-if="$page.props.auth.user" :href="route('dashboard')" class="text-sm text-gray-700 underline">
Dashboard
</Link>

Expand Down

0 comments on commit 0c7e12f

Please sign in to comment.