- Add useLocation and useEffect to TrackingPage to pre-fill URL and method from navigation state - Add useLocation and useEffect to AnalysisPage to pre-fill URL from navigation state - Users can now click 'Re-track URL' or 'Analyze URL' from check detail pages and forms are automatically populated - Improves user workflow by eliminating manual URL retyping - Maintains type safety with proper TypeScript interfaces for location state
24 lines
717 B
HTML
24 lines
717 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>URL Tracker Tool V2</title>
|
|
|
|
<!-- Google tag (gtag.js) -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZDZ26XYN2P"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-ZDZ26XYN2P');
|
|
</script>
|
|
<script type="module" crossorigin src="/assets/index-DL4PyATX.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html>
|