@@ -13,7 +13,7 @@ import { Dialog, DialogPanel, DialogTitle } from "@headlessui/react";
1313import { useServerConfig } from "../contexts/ServerConfigContext" ;
1414import { generateGitHubIssueUrl } from "../utils/githubIssue" ;
1515
16- export function meta ( { } : Route . MetaArgs ) {
16+ export function meta ( { } : Route . MetaArgs ) {
1717 const { jobId } = useParams < { jobId : string } > ( ) ;
1818 return [
1919 {
@@ -161,54 +161,48 @@ export default function JobDetails() {
161161
162162 if ( loading && ! jobData ) {
163163 return (
164- < div className = "pb-12 bg-cerulean-blue-50 pt-1" >
165- < PageLayout title = "Verification Job" >
166- < div className = "p-8" >
167- < div className = "flex justify-center items-center h-64" >
168- < div className = "animate-spin h-8 w-8 border-4 border-cerulean-blue-600 border-t-transparent rounded-full" > </ div >
169- </ div >
164+ < PageLayout title = "Verification Job" >
165+ < div className = "p-8" >
166+ < div className = "flex justify-center items-center h-64" >
167+ < div className = "animate-spin h-8 w-8 border-4 border-cerulean-blue-600 border-t-transparent rounded-full" > </ div >
170168 </ div >
171- </ PageLayout >
172- </ div >
169+ </ div >
170+ </ PageLayout >
173171 ) ;
174172 }
175173
176174 if ( error ) {
177175 return (
178- < div className = "pb-12 bg-cerulean-blue-50 pt-1" >
179- < PageLayout title = "Verification Job" >
180- < >
181- < div className = "mb-6 px-4 md:px-8 pt-4 md:pt-6" >
182- < a href = "/" className = "text-cerulean-blue-600 hover:text-cerulean-blue-800 flex items-center" >
183- ← Back to Verification
184- </ a >
185- </ div >
186- < div className = "p-4 md:p-8" >
187- < div className = "bg-white rounded-lg shadow-sm border border-gray-200 p-4 md:p-6" >
188- < div className = "bg-red-50 border border-red-200 rounded-lg p-4" >
189- < h2 className = "text-base md:text-lg font-medium text-red-800 mb-2" > Error Loading Job</ h2 >
190- < p className = "text-sm md:text-base text-red-600" > { error } </ p >
191- < p className = "text-sm md:text-base text-red-600" > Server URL: { serverUrl } </ p >
192- </ div >
176+ < PageLayout title = "Verification Job" >
177+ < >
178+ < div className = "mb-6 px-4 md:px-8 pt-4 md:pt-6" >
179+ < a href = "/" className = "text-cerulean-blue-600 hover:text-cerulean-blue-800 flex items-center" >
180+ ← Back to Verification
181+ </ a >
182+ </ div >
183+ < div className = "p-4 md:p-8" >
184+ < div className = "bg-white rounded-lg shadow-sm border border-gray-200 p-4 md:p-6" >
185+ < div className = "bg-red-50 border border-red-200 rounded-lg p-4" >
186+ < h2 className = "text-base md:text-lg font-medium text-red-800 mb-2" > Error Loading Job</ h2 >
187+ < p className = "text-sm md:text-base text-red-600" > { error } </ p >
188+ < p className = "text-sm md:text-base text-red-600" > Server URL: { serverUrl } </ p >
193189 </ div >
194190 </ div >
195- </ >
196- </ PageLayout >
197- </ div >
191+ </ div >
192+ </ >
193+ </ PageLayout >
198194 ) ;
199195 }
200196
201197 if ( ! jobData ) {
202198 return (
203- < div className = "pb-12 bg-cerulean-blue-50 pt-1" >
204- < PageLayout title = "Verification Job" >
205- < div className = "p-4 md:p-8" >
206- < div className = "bg-white rounded-lg shadow-sm border border-gray-200 p-4 md:p-6" >
207- < p className = "text-sm md:text-base text-gray-600" > Job not found</ p >
208- </ div >
199+ < PageLayout title = "Verification Job" >
200+ < div className = "p-4 md:p-8" >
201+ < div className = "bg-white rounded-lg shadow-sm border border-gray-200 p-4 md:p-6" >
202+ < p className = "text-sm md:text-base text-gray-600" > Job not found</ p >
209203 </ div >
210- </ PageLayout >
211- </ div >
204+ </ div >
205+ </ PageLayout >
212206 ) ;
213207 }
214208
@@ -451,8 +445,8 @@ export default function JobDetails() {
451445
452446 { /* Bytecode Information */ }
453447 { jobData . error . recompiledCreationCode ||
454- jobData . error . recompiledRuntimeCode ||
455- jobData . error . onchainRuntimeCode ? (
448+ jobData . error . recompiledRuntimeCode ||
449+ jobData . error . onchainRuntimeCode ? (
456450 < div >
457451 < h3 className = "text-base md:text-lg font-bold text-gray-900 mb-3" > Bytecode Data</ h3 >
458452
0 commit comments