Skip to content

Commit

Permalink
fix(ci): pipeline breaking due to eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MFarabi619 committed Jul 14, 2024
1 parent e8d5eda commit 7c54e71
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 7 deletions.
3 changes: 0 additions & 3 deletions src/components/sections/home-page/hero.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
import { MotionGlobalConfig } from 'framer-motion'
import { FlipWords } from '@/components/ui/flip-words'
import { HomePageButton } from '@/components/ui/home-button'
import { buttons } from '@/content/web/buttons'
import { Boxes } from '@/components/ui/background-boxes'

// MotionGlobalConfig.skipAnimations = true

const words = ['vision', 'ideas', 'stack', 'way']

export function Hero() {
Expand Down
4 changes: 2 additions & 2 deletions src/components/ui/flip-words.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'use client'
// https://ui.aceternity.com/components/flip-words

import React, { useCallback, useEffect, useRef, useState } from 'react'
import { AnimatePresence, LayoutGroup, motion } from 'framer-motion'
import React, { useCallback, useEffect, useState } from 'react'
import { AnimatePresence, motion } from 'framer-motion'
import { cn } from '@/lib/utils'

export function FlipWords({
Expand Down
1 change: 0 additions & 1 deletion src/components/ui/home-button.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import clsx from 'clsx'
import Image from 'next/image'
import Link from 'next/link'
import { Button } from '@/components/ui/button'
import { LinkPreview } from '@/components/ui/link-preview'

Expand Down
1 change: 0 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import type { Config } from 'tailwindcss'
import tailwindcssAnimate from 'tailwindcss-animate'

import colors from 'tailwindcss/colors'
// @ts-expect-error: This works and doesn't cause any issues
import flattenColorPalette from 'tailwindcss/lib/util/flattenColorPalette'

Expand Down

0 comments on commit 7c54e71

Please sign in to comment.