You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-11-23 11:02:35 +03:00
Remove the last authentication from the browser session model
This commit is contained in:
@@ -50,6 +50,8 @@ const QUERY = graphql(/* GraphQL */ `
|
||||
before: $before
|
||||
state: ACTIVE
|
||||
) {
|
||||
totalCount
|
||||
|
||||
edges {
|
||||
cursor
|
||||
node {
|
||||
@@ -129,6 +131,7 @@ const BrowserSessionList: React.FC<{ userId: string }> = ({ userId }) => {
|
||||
<PaginationControls
|
||||
onPrev={prevPage ? (): void => paginate(prevPage) : null}
|
||||
onNext={nextPage ? (): void => paginate(nextPage) : null}
|
||||
count={browserSessions.totalCount}
|
||||
disabled={pending}
|
||||
/>
|
||||
{browserSessions.edges.map((n) => (
|
||||
|
||||
Reference in New Issue
Block a user