You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have an "access account" feature where i can impersonate the user then redirects to the accessed user's dashboard. the dashboard uses deferred props to load chart data. when accessing an account, i add a session success message for a toast notification using toastification. however, the toast notification appears twice - once on the initial page load and again after the deferred props are fetched.
my HandleInertiaRequest middleware for passing flash session to front-end via shared() method
class UserImpersonateController extends Controller
{
publicfunction__invoke(User$user): RedirectResponse
{
Session::put('impersonating', Auth::user());
Auth::login($user);
return Redirect::route('dashboard')
->with('success', sprintf(
'You are now logged in as %s',
$user->name
));
}
}
i tried console.log(event.detail.page.props.flash.success) in app.js, and it does appear twice. this is the second time i've encountered this issue. i'm not sure if it's inertia.js-related, but i noticed it only happens in this specific situation - after redirecting to a page that uses both deferred props and a flash session.
The text was updated successfully, but these errors were encountered:
i have an "access account" feature where i can impersonate the user then redirects to the accessed user's dashboard. the dashboard uses deferred props to load chart data. when accessing an account, i add a session success message for a toast notification using toastification. however, the toast notification appears twice - once on the initial page load and again after the deferred props are fetched.
my HandleInertiaRequest middleware for passing flash session to front-end via
shared()
methodtoastificiation in app.js
component in user's dashboard that uses deferred props
my controller
i tried
console.log(event.detail.page.props.flash.success)
in app.js, and it does appear twice. this is the second time i've encountered this issue. i'm not sure if it's inertia.js-related, but i noticed it only happens in this specific situation - after redirecting to a page that uses both deferred props and a flash session.The text was updated successfully, but these errors were encountered: