feat: server permission checking and v0.2.28 release (#178)

This commit is contained in:
Doh
2025-08-20 17:27:50 -04:00
committed by GitHub
parent e05b982307
commit 31700c9a45
8 changed files with 414 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
'use client'
import { Button } from '@/components/ui/button'
import { RefreshCw } from 'lucide-react'
export default function RecheckButton() {
const handleRecheck = () => {
window.location.reload()
}
return (
<Button
onClick={handleRecheck}
variant="outline"
size="sm"
className="bg-red-50 border-red-300 text-red-700 hover:bg-red-100"
>
<RefreshCw className="h-4 w-4 mr-2" />
Recheck
</Button>
)
}