Skip to content

Commit

Permalink
🐛 Fix rel paths
Browse files Browse the repository at this point in the history
  • Loading branch information
malted committed Sep 2, 2023
1 parent 4d6937f commit 320a8a5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
22 changes: 11 additions & 11 deletions pages/hcb/apply/index.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { useEffect, useState, useRef } from 'react'
import { useRouter } from 'next/router'
import { Box, Flex, Text } from 'theme-ui'
import ForceTheme from '../../components/force-theme'
import ForceTheme from '../../../components/force-theme'
import Head from 'next/head'
import Meta from '@hackclub/meta'
import FlexCol from '../../components/flex-col'
import Progress from '../../components/hcb/apply/progress'
import NavButton from '../../components/hcb/apply/nav-button'
import Watermark from '../../components/hcb/apply/watermark'
import FormContainer from '../../components/hcb/apply/form-container'
import HCBInfo from '../../components/hcb/apply/hcb-info'
import OrganizationInfoForm from '../../components/hcb/apply/org-form'
import PersonalInfoForm from '../../components/hcb/apply/personal-form'
import AlertModal from '../../components/hcb/apply/alert-modal'
import { geocode } from '../../lib/hcb/apply/address-validation'
import FlexCol from '../../../components/flex-col'
import Progress from '../../../components/hcb/apply/progress'
import NavButton from '../../../components/hcb/apply/nav-button'
import Watermark from '../../../components/hcb/apply/watermark'
import FormContainer from '../../../components/hcb/apply/form-container'
import HCBInfo from '../../../components/hcb/apply/hcb-info'
import OrganizationInfoForm from '../../../components/hcb/apply/org-form'
import PersonalInfoForm from '../../../components/hcb/apply/personal-form'
import AlertModal from '../../../components/hcb/apply/alert-modal'
import { geocode } from '../../../lib/hcb/apply/address-validation'

const valiadateAddress = async step => {
// Validate the address
Expand Down
6 changes: 3 additions & 3 deletions pages/hcb/apply/success.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import {
Flex,
Image
} from 'theme-ui'
import ForceTheme from '../../components/force-theme'
import ForceTheme from '../../../components/force-theme'
import JSConfetti from 'js-confetti'
import Icon from '../../components/icon'
import FlexCol from '../../components/flex-col'
import Icon from '../../../components/icon'
import FlexCol from '../../../components/flex-col'

function Option({ icon, label, link }) {
const color =
Expand Down
1 change: 0 additions & 1 deletion pages/hcb/first.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ export default function First({ stats }) {
export async function getStaticProps(context) {
const res = await fetch(`https://hcb.hackclub.com/stats`)
const stats = await res.json()
console.log(stats)

return {
props: {
Expand Down

0 comments on commit 320a8a5

Please sign in to comment.