forked from baron/baron-sso
chore: ignore playwright artifacts in biome and fix minor devfront imports
This commit is contained in:
@@ -19,6 +19,12 @@
|
|||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
"files": {
|
"files": {
|
||||||
"ignore": ["dist", "node_modules", "tsconfig*.json"]
|
"ignore": [
|
||||||
|
"dist",
|
||||||
|
"node_modules",
|
||||||
|
"tsconfig*.json",
|
||||||
|
"test-results",
|
||||||
|
"playwright-report"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,6 +18,12 @@
|
|||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
"files": {
|
"files": {
|
||||||
"ignore": ["dist", "node_modules", "tsconfig*.json"]
|
"ignore": [
|
||||||
|
"dist",
|
||||||
|
"node_modules",
|
||||||
|
"tsconfig*.json",
|
||||||
|
"test-results",
|
||||||
|
"playwright-report"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,9 +9,9 @@ import {
|
|||||||
Search,
|
Search,
|
||||||
} from "lucide-react";
|
} from "lucide-react";
|
||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
|
import { ForbiddenMessage } from "../../components/common/ForbiddenMessage";
|
||||||
import { Badge } from "../../components/ui/badge";
|
import { Badge } from "../../components/ui/badge";
|
||||||
import { Button } from "../../components/ui/button";
|
import { Button } from "../../components/ui/button";
|
||||||
import { ForbiddenMessage } from "../../components/common/ForbiddenMessage";
|
|
||||||
import {
|
import {
|
||||||
Card,
|
Card,
|
||||||
CardContent,
|
CardContent,
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import {
|
|||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import { useAuth } from "react-oidc-context";
|
import { useAuth } from "react-oidc-context";
|
||||||
import { Link, useNavigate } from "react-router-dom";
|
import { Link, useNavigate } from "react-router-dom";
|
||||||
|
import { ForbiddenMessage } from "../../components/common/ForbiddenMessage";
|
||||||
import {
|
import {
|
||||||
Avatar,
|
Avatar,
|
||||||
AvatarFallback,
|
AvatarFallback,
|
||||||
@@ -18,7 +19,6 @@ import {
|
|||||||
} from "../../components/ui/avatar";
|
} from "../../components/ui/avatar";
|
||||||
import { Badge } from "../../components/ui/badge";
|
import { Badge } from "../../components/ui/badge";
|
||||||
import { Button } from "../../components/ui/button";
|
import { Button } from "../../components/ui/button";
|
||||||
import { ForbiddenMessage } from "../../components/common/ForbiddenMessage";
|
|
||||||
import {
|
import {
|
||||||
Card,
|
Card,
|
||||||
CardContent,
|
CardContent,
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ import {
|
|||||||
CardTitle,
|
CardTitle,
|
||||||
} from "../../components/ui/card";
|
} from "../../components/ui/card";
|
||||||
import { t } from "../../lib/i18n";
|
import { t } from "../../lib/i18n";
|
||||||
import ProfileTenantSwitcher from "./ProfileTenantSwitcher";
|
|
||||||
import { fetchMe } from "../auth/authApi";
|
import { fetchMe } from "../auth/authApi";
|
||||||
|
import ProfileTenantSwitcher from "./ProfileTenantSwitcher";
|
||||||
|
|
||||||
function ProfilePage() {
|
function ProfilePage() {
|
||||||
const auth = useAuth();
|
const auth = useAuth();
|
||||||
|
|||||||
Reference in New Issue
Block a user