Filtering by page and boolean

I’m using dynamic pages to display our pricing and I think I’m really close! All this time spent in the Wix Velo forums is paying off.

This is the page: https://www.surroundinsurance.com/prices/ monthly

The main categories are Monthly vs. Yearly.

Then, on the left, there will be sub-categories (you can see a button for “driving.”) There will eventually be a bunch more. When clicked, it should filter the current view to fewer options (those with driving). Monthly vs. Yearly views are working, but when I click on “driving” it pulls in results from both Monthly and Yearly pricing.

This is the code I’m using:

import wixData from ‘wix-data’ ;

export function button4_click () {
$w ( “#dataset1” ). setFilter ( wixData . filter (). eq ( “driving” , true ))
}

Is there a way to have it see the page and only display that page’s results?