File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
site/src/modules/management Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ import { ChevronDown, Plus } from "lucide-react";
22
22
import { useDashboard } from "modules/dashboard/useDashboard" ;
23
23
import { type FC , useState } from "react" ;
24
24
import { useNavigate } from "react-router-dom" ;
25
- import { Link } from "react-router-dom" ;
26
25
27
26
export interface OrganizationWithPermissions extends Organization {
28
27
permissions : AuthorizationResponse ;
@@ -153,7 +152,9 @@ const OrganizationsSettingsNavigation: FC<
153
152
className = "flex justify-center data-[selected=true]:bg-transparent"
154
153
onSelect = { ( ) => {
155
154
setIsPopoverOpen ( false ) ;
156
- navigate ( "/organizations/new" ) ;
155
+ setTimeout ( ( ) => {
156
+ navigate ( "/organizations/new" ) ;
157
+ } , 200 ) ;
157
158
} }
158
159
>
159
160
< Plus /> Create Organization
You can’t perform that action at this time.
0 commit comments