From 2db14e2990f3551a1159cd7d01eac47e104c19f5 Mon Sep 17 00:00:00 2001 From: Truphile Date: Sat, 27 Jun 2026 13:34:33 -0400 Subject: [PATCH] fix: add .ts extensions to sponsors.service and useTransaction to fix CI build module resolution --- src/pages/Sponsors.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Sponsors.tsx b/src/pages/Sponsors.tsx index 6083909..6366157 100644 --- a/src/pages/Sponsors.tsx +++ b/src/pages/Sponsors.tsx @@ -1,7 +1,7 @@ import { useState } from 'react' import { useQuery } from '@tanstack/react-query' -import { sponsorsService } from '../services/sponsors.service' -import { useTransaction } from '../hooks/useTransaction' +import { sponsorsService } from '../services/sponsors.service.ts' +import { useTransaction } from '../hooks/useTransaction.ts' import { useWallet } from '../hooks/useWallet' import { Button } from '../components/ui/Button' import { Card } from '../components/ui/Card'