Skip to content

Commit

Permalink
Remove space
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamir198 committed Mar 26, 2024
1 parent e52bd12 commit 6c45c28
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/[locale]/projects/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { Project, ProjectPaginationFilter } from '@/types/project';
import React, { useCallback, useEffect, useState } from 'react';
import { useTranslations } from 'next-intl';


const ProjectsPage = () => {
const [projects, setProjects] = useState<Project[]>([]);
const [loading, setLoading] = useState(true);
Expand All @@ -16,7 +15,7 @@ const ProjectsPage = () => {
const [filter, setFilter] = useState(ProjectPaginationFilter.ALL);
const [searchByProjectNameValue, setSearchByProjectNameValue] = useState('');

const t = useTranslations('projects');
const t = useTranslations('projects');

/**
* @param {Project} project
Expand Down Expand Up @@ -130,7 +129,6 @@ const ProjectsPage = () => {
{/* Project list */}
{loading ? (
<div className="flex flex-col gap-4 h-[75vh] mb-10 w-[90%] md:w-full max-w-[1240px] mx-auto pl-2">

{t('populatingProjectMessage')}
</div>
) : projects?.length ? (
Expand Down

0 comments on commit 6c45c28

Please sign in to comment.