Alvaro Martinez
Alvaro Martinez
yes I have the same error when I import in `_app.js`
When you define your columns and you are going to filter specific data from a column make sure to add the `filterFn` property: ```typescript filterFn: (row, id, value) => {...
for those using server-side components and client-side components, be sure to use the [correct method](https://supabase.com/docs/guides/auth/auth-helpers/nextjs-server-components). **Next.js** example: ```typescript // Client side 'use client' export const useSupabase = () => {...