Skip to content

Commit

Permalink
chore(clerk-js): Update after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
panteliselef committed Oct 30, 2023
1 parent 91d3cb5 commit b2c6c49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { DataTable, RoleSelect, RowContainer } from './MemberListTable';

export const ActiveMembersList = () => {
const card = useCardState();
const { organization, memberships, ...rest } = useCoreOrganization({
const { organization, memberships } = useCoreOrganization({
memberships: true,
});

Expand Down
4 changes: 2 additions & 2 deletions packages/shared/src/react/hooks/usePagesOrInfinite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import { useCallback, useMemo, useRef, useState } from 'react';

import { useSWR, useSWRInfinite } from './clerk-swr';
import type { CacheSetter, PaginatedResources, ValueOrSetter } from './types';
import { useSWR, useSWRInfinite } from '../clerk-swr';
import type { CacheSetter, PaginatedResources, ValueOrSetter } from '../types';

function getDifferentKeys(obj1: Record<string, unknown>, obj2: Record<string, unknown>): Record<string, unknown> {
const keysSet = new Set(Object.keys(obj2));
Expand Down

0 comments on commit b2c6c49

Please sign in to comment.