Forms not using turbo by default?

Hi there, currently rediscovering Rails after a few years away.

I’ve set up a simple search form that queries products but it seems to be leading to a full page refresh and not using Turbo by default?

<%= form_with url: products_path, method: :get do |form| %>
  <%= text_field_tag "q" %>
<% end %>

Could anyone confirm if there is anything else that needs to be done with a new Rails install before Turbo intercepts form requests? Or anywhere I may be going wrong? Thanks!

Ah I think I may still be on Rails 6