mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 15:44:23 +08:00
Adapts the tax id view to the new MGMT-API endpoints. Users can now only manage a single tax id instead of adding multiple. Besides - Use non-deprecated fetchers - Use Shadcn components
UI Testing Notes
<Popover> vs <Dropdown>
When simulating clicks on these components, do the following:
// for Popovers
import userEvent from '@testing-library/user-event'
userEvent.click('Hello world')
// for Dropdowns
import clickDropdown from 'tests/helpers'
clickDropdown('Hello world')
Rules
- All tests should be run consistently (avoid situations whereby tests fails "sometimes")