Skip to content

Commit

Permalink
lint files
Browse files Browse the repository at this point in the history
  • Loading branch information
snigdha-kansal committed Jul 15, 2024
1 parent 990a53d commit bf4a3a5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion components/ContributeProject.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from 'next/legacy/image';
import React, { useState } from 'react';
import { GFIProject, GitHubColors, GithubIssueAssignees } from '../util';
import ELink from './ELink';
import { GFIProject, GitHubColors, GithubIssueAssignees } from '../util';


interface ContributeProjectProps {
Expand Down
2 changes: 1 addition & 1 deletion components/GitHubEvent.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import moment from 'moment';
import React from 'react';
import { GitHubEvent } from '../util';
import ELink from './ELink';
import GitHubEventAction from './GitHubEventAction';
import { GitHubEvent } from '../util';


function GitHubEventComponent(props: GitHubEvent): JSX.Element {
Expand Down
2 changes: 1 addition & 1 deletion components/GitHubEventAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import type {
PushEvent, PublicEvent, WatchEvent,
} from '@octokit/webhooks-types';
import React from 'react';
import { GitHubEvent } from '../util';
import ELink from './ELink';
import { GitHubEvent } from '../util';

export type GitHubEventPayloadType =
| CreateEvent
Expand Down
2 changes: 1 addition & 1 deletion components/ProjectCard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from 'next/legacy/image';
import React from 'react';
import { Project, GitHubColors } from '../util/';
import ELink from './ELink';
import { Project, GitHubColors } from '../util/';

interface ProjectCardProps {
project: Project;
Expand Down
2 changes: 1 addition & 1 deletion components/SearchFilter/SearchFilter.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { ChangeEvent, useState, useEffect } from 'react';
import { Project } from '../../util';
import Searchbar from './Searchbar';
import { Project } from '../../util';

interface SearchFilterProps {
projects: Project[];
Expand Down
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Octokit } from '@octokit/core';
import { GetStaticProps, InferGetStaticPropsType } from 'next';
import { NextSeo } from 'next-seo';
import Link from 'next/link';
import { NextSeo } from 'next-seo';
import React from 'react';
import ELink from '../components/ELink';
import GitHubEventComponent from '../components/GitHubEvent';
Expand Down
2 changes: 1 addition & 1 deletion util/projectRequest.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Octokit } from '@octokit/core';
import { paginateRest } from '@octokit/plugin-paginate-rest';
import githubColorsFixture from '../data/githubColors.json';
import { Project, ACMCommitteeTopics, GitHubColors, GitHubRepo, GitHubIssue, GFIProject } from './types';
import githubColorsFixture from '../data/githubColors.json';

//get projects within uclaacm org
export async function getProjects(): Promise<Project[]> {
Expand Down

0 comments on commit bf4a3a5

Please sign in to comment.