All, i am facing an issue with routing when i click on the link i am taking to a blank page and only when i click refersh in my browser am i taking to the re-directed page.
<%= link_to "Sign up", new_user_registration_path, class: "dropdown-item" %>
<div class="dropdown-divider"></div>
<%= link_to "Login", new_user_session_path, class: "dropdown-item" %>
Routes devise_for :users
If i click on login i am taking to a blank page
If i hard refresh (F5) I am redirected. This i am using devise Gem
Any pointers will be helpful.. Thanks in advance...