Skip to content

Commit d6f77f0

Browse files
committed
fixup: update pat loading message
1 parent 1e071f6 commit d6f77f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/dashboard/src/settings/PersonalAccessTokens.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ export function PersonalAccessTokenCreateView() {
334334
/>
335335
)}
336336
</>
337-
<SpinnerOverlayLoader content="fetching access token" loading={loading}>
337+
<SpinnerOverlayLoader content="loading access token" loading={loading}>
338338
<div className="mb-6">
339339
<div className="flex flex-col mb-4">
340340
<h3>{editTokenID ? "Edit" : "New"} Personal Access Token</h3>
@@ -607,7 +607,7 @@ function ListAccessTokensView() {
607607
)}
608608
</>
609609
{loading ? (
610-
<SpinnerLoader content="fetching access token list" />
610+
<SpinnerLoader content="loading access token list" />
611611
) : (
612612
<>
613613
{tokens.length === 0 ? (

0 commit comments

Comments
 (0)