UI styling changes #33

Merged
nabarun merged 9 commits from staging into main 2024-11-06 04:10:18 +00:00
Showing only changes of commit 420080b1af - Show all commits

View File

@ -6,12 +6,11 @@ import { Heading, Badge, Button } from 'components/shared';
import { PlusIcon } from 'components/shared/CustomIcon';
import { useGQLClient } from 'context/GQLClientContext';
import { Project } from 'gql-client';
import { project as mockProject } from 'pages/index';
const Projects = () => {
const client = useGQLClient();
const { orgSlug } = useParams();
const [projects, setProjects] = useState<Project[]>([mockProject]);
const [projects, setProjects] = useState<Project[]>([]);
const fetchProjects = useCallback(async () => {
const { projectsInOrganization } = await client.getProjectsInOrganization(