Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
0b4252d1
Commit
0b4252d1
authored
Aug 25, 2025
by
Johnny
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: fix linter
parent
cf296848
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
4 deletions
+0
-4
AccessTokenSection.tsx
web/src/components/Settings/AccessTokenSection.tsx
+0
-1
UserSessionsSection.tsx
web/src/components/Settings/UserSessionsSection.tsx
+0
-1
WorkspaceSection.tsx
web/src/components/Settings/WorkspaceSection.tsx
+0
-2
No files found.
web/src/components/Settings/AccessTokenSection.tsx
View file @
0b4252d1
...
...
@@ -9,7 +9,6 @@ import { useDialog } from "@/hooks/useDialog";
import
{
UserAccessToken
}
from
"@/types/proto/api/v1/user_service"
;
import
{
useTranslate
}
from
"@/utils/i18n"
;
import
CreateAccessTokenDialog
from
"../CreateAccessTokenDialog"
;
import
LearnMore
from
"../LearnMore"
;
const
listAccessTokens
=
async
(
parent
:
string
)
=>
{
const
{
accessTokens
}
=
await
userServiceClient
.
listUserAccessTokens
({
parent
});
...
...
web/src/components/Settings/UserSessionsSection.tsx
View file @
0b4252d1
...
...
@@ -6,7 +6,6 @@ import { userServiceClient } from "@/grpcweb";
import
useCurrentUser
from
"@/hooks/useCurrentUser"
;
import
{
UserSession
}
from
"@/types/proto/api/v1/user_service"
;
import
{
useTranslate
}
from
"@/utils/i18n"
;
import
LearnMore
from
"../LearnMore"
;
const
listUserSessions
=
async
(
parent
:
string
)
=>
{
const
{
sessions
}
=
await
userServiceClient
.
listUserSessions
({
parent
});
...
...
web/src/components/Settings/WorkspaceSection.tsx
View file @
0b4252d1
import
{
isEqual
}
from
"lodash-es"
;
import
{
ExternalLinkIcon
}
from
"lucide-react"
;
import
{
observer
}
from
"mobx-react-lite"
;
import
{
useEffect
,
useState
}
from
"react"
;
import
{
toast
}
from
"react-hot-toast"
;
import
{
Link
}
from
"react-router-dom"
;
import
{
Button
}
from
"@/components/ui/button"
;
import
{
Select
,
SelectContent
,
SelectItem
,
SelectTrigger
,
SelectValue
}
from
"@/components/ui/select"
;
import
{
Separator
}
from
"@/components/ui/separator"
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment