File tree Expand file tree Collapse file tree
apps/web/app/(ee)/api/admin/partners/trusted Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,9 +8,7 @@ import * as z from "zod/v4";
88export const GET = withAdmin ( async ( ) => {
99 const partners = await prisma . partner . findMany ( {
1010 where : {
11- trustedAt : {
12- not : null ,
13- } ,
11+ networkStatus : "trusted" ,
1412 } ,
1513 orderBy : {
1614 trustedAt : "desc" ,
Original file line number Diff line number Diff line change @@ -77,10 +77,9 @@ export default function NetworkPartnerApplicationApproved({
7777 </ Link >
7878 </ Section >
7979
80- < Footer
81- email = { email }
82- notificationSettingsUrl = "https://partners.dub.co/profile/notifications"
83- />
80+ < Section className = "mx-auto max-w-[400px] text-center" >
81+ < Footer email = { email } />
82+ </ Section >
8483 </ Container >
8584 </ Body >
8685 </ Tailwind >
Original file line number Diff line number Diff line change @@ -113,7 +113,6 @@ model Partner {
113113 @@index (country )
114114 @@index (networkStatus )
115115 @@index (createdAt )
116- @@index (trustedAt ) // TODO: remove index once we fully migrate to networkStatus
117116 @@index (payoutMethodHash )
118117 @@index (cryptoWalletAddress )
119118 @@index (identityVerifiedAt )
You can’t perform that action at this time.
0 commit comments