Skip to content

Commit

Permalink
chore: 🎨 use import path aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan6erbond committed May 21, 2023
1 parent 4278082 commit 76b146c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import { IconCirclePlus, IconPhotoPlus } from "@tabler/icons-react";
import Link from "next/link";
import { useRouter } from "next/router";
import React, { useEffect, useRef, useState } from "react";
import { usePasteFiles } from "../hooks/usePasteFiles";
import { MEDIA_MIME_TYPE } from "../utils/mediaTypes";
import { usePasteFiles } from "@/hooks/usePasteFiles";
import { MEDIA_MIME_TYPE } from "@/utils/mediaTypes";
import Header from "./header";

interface LayoutProps {
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useAuthMethods.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect, useState } from "react";
import { usePocketBase } from "../pocketbase";
import { usePocketBase } from "@/pocketbase";
import { AuthProviderInfo } from "pocketbase";

export const useAuthMethods = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/env.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { pocketBaseUrl } from "../pocketbase";
import { pocketBaseUrl } from "@/pocketbase";

export interface ShareMeEnv {
signUpEnabled: boolean;
Expand Down

0 comments on commit 76b146c

Please sign in to comment.