-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed refresh token, added disabled menu items
- Loading branch information
1 parent
44934ae
commit d91d340
Showing
13 changed files
with
269 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ import * as Sentry from "@sentry/nextjs"; | |
|
||
Sentry.init({ | ||
dsn: "https://[email protected]/2", | ||
enabled: "false", | ||
integrations: [Sentry.replayIntegration()], | ||
replaysSessionSampleRate: 0.1, | ||
replaysOnErrorSampleRate: 1.0 | ||
|
21 changes: 21 additions & 0 deletions
21
apps/provider-console/src/components/dashboard/DashboardCardSkeleton.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from "react"; | ||
import { Card, CardContent } from "@akashnetwork/ui/components"; | ||
|
||
const DashboardCardSkeleton: React.FC = () => ( | ||
<Card> | ||
<CardContent className="rounded-lg p-6 shadow-md"> | ||
<div className="grid grid-cols-2 gap-4"> | ||
<div> | ||
<div className="h-4 w-24 animate-pulse bg-gray-200 rounded"></div> | ||
<div className="mt-2 h-8 w-32 animate-pulse bg-gray-200 rounded"></div> | ||
<div className="mt-1 h-4 w-16 animate-pulse bg-gray-200 rounded"></div> | ||
</div> | ||
<div className="col-span-2 flex items-center justify-end"> | ||
<div className="h-24 w-full animate-pulse bg-gray-200 rounded"></div> | ||
</div> | ||
</div> | ||
</CardContent> | ||
</Card> | ||
); | ||
|
||
export default DashboardCardSkeleton; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.