From 7a7424f4aefe7ece50210ccf69a9fd99a316adad Mon Sep 17 00:00:00 2001 From: emil28092005 Date: Sat, 2 May 2026 02:37:54 +0300 Subject: [PATCH] fix: remove unused Link import in history page Co-Authored-By: Claude Sonnet 4.6 --- frontend/app/(student)/history/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/app/(student)/history/page.tsx b/frontend/app/(student)/history/page.tsx index 0709e9b..543362c 100644 --- a/frontend/app/(student)/history/page.tsx +++ b/frontend/app/(student)/history/page.tsx @@ -1,7 +1,6 @@ 'use client'; import { useState, useEffect, useCallback } from 'react'; -import Link from 'next/link'; import { StudentNav } from '@/components/StudentNav'; import { TransactionList } from '@/components/TransactionList'; import { Button } from '@/components/ui';