Joshua Moffett

Results 9 comments of Joshua Moffett

@webera1979 Just curious, but are you accessing the headers using the `Headers` methods? `response.headers.get('Content-Type')` I've noticed while using a debugger before that the headers appear as an empty object literal....

@LuoHuacheng If it's only the Authorization header that is null, then that is expected I think. The response would not usually contain the Authorization header, unless you explicitly add it...

This issue is similar (or likely the same) as mine, and I've been hesitating to suggest this, but I've tried using a different means of determining deep equality on the...

@lgm-dev The way I solved my issue won't work for you, because I didn't need to do any checks (i.e. for expiry) on each request. However, the issue of being...

I'd like to offer this as a solution to #168. I couldn't see a reason for using deep object comparison on the dependencies for makeFetch, and the JSON.stringify comparison made...

I think the scenario of infinite looping would only happen if the function references were changing on every render. But, in this case, they seem to be part of the...

For the scenario where the "Hide all" button is clicked, the columns are toggled like this: ``` const handleToggleAllColumns = (value?: boolean) => { getAllLeafColumns() .filter((col) => col.columnDef.enableHiding !== false)...

It appears to respect it. https://github.com/TanStack/table/blob/5edd993959967e84766602a9bba908fc6deb4b70/packages/table-core/src/features/ColumnVisibility.ts#L276 ``` table.toggleAllColumnsVisible = value => { value = value ?? !table.getIsAllColumnsVisible() table.setColumnVisibility( table.getAllLeafColumns().reduce( (obj, column) => ({ ...obj, [column.id]: !value ? !column.getCanHide?.() : value,...

Just to supplement what Thomas said – using `link` on GSI1PK and GSI1SK only sets the key on `PutItemCommand`. You need to add `updateLink` if you want it to happen...