Skip to content

Commit

Permalink
fix: typo in redirect page
Browse files Browse the repository at this point in the history
  • Loading branch information
sahsisunny committed Nov 9, 2023
1 parent 44508dc commit c24ede7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/constants/url.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const TINY_API_URL = 'https://staging-tinysite-api.realdevsquad.com/v1';
export const TINY_API_GOOGLE_LOGIN = `${TINY_API_URL}/auth/google/login`;
export const TINY_API_LOGOUT = `${TINY_API_URL}/auth/logout`;
export const BASE_SHORT_URL = 'https://staging-tinysite.realdevsquad.com';
export const TINY_SITE = 'https://staging-tinysite.realdevsquad.com';
export const TINY_API_URL_DETAIL = `${TINY_API_URL}/urls`;
export const TINY_API_REDIRECT = `${TINY_API_URL}/tinyurl`;
2 changes: 1 addition & 1 deletion src/pages/[slug]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const Redirect = () => {
const router = useRouter();
const { slug: shortUrlCode } = router.query as { slug: string };
const [originalUrl, setOriginalUrl] = useState('');
const [timer, setTimer] = useState(55555);
const [timer, setTimer] = useState(5);
const [isPremiumUser, setIsPremiumUser] = useState(false);
const [showTooltip, setShowTooltip] = useState(false);

Expand Down

0 comments on commit c24ede7

Please sign in to comment.