Skip to content

fix: select default org in template form if only one exists #16639

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Mar 10, 2025
Prev Previous commit
Next Next commit
import order
  • Loading branch information
Kira-Pilot committed Mar 7, 2025
commit 0330ba6c29933d2a80c47592621ddd896fd08dd6
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ import { organizations } from "api/queries/organizations";
import type { AuthorizationCheck, Organization } from "api/typesGenerated";
import { Avatar } from "components/Avatar/Avatar";
import { AvatarData } from "components/Avatar/AvatarData";
import { type ComponentProps, type FC, useState, useMemo, useEffect } from "react";
import {
type ComponentProps,
type FC,
useEffect,
useMemo,
useState,
} from "react";
import { useQuery } from "react-query";

export type OrganizationAutocompleteProps = {
Expand Down
Loading