We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b8a5d0 commit b79390aCopy full SHA for b79390a
src/popup/main.tsx
@@ -173,13 +173,18 @@ const Popup = () => {
173
</a>
174
<div className="space-x-2">
175
{useSelfHosted && !isDone && (
176
- <button
177
- onClick={requestHostPermission}
178
- disabled={isUrlPermissionGranted}
179
- className="btn btn-ghost text-white"
+ <div
+ className="tooltip tooltip-bottom"
+ data-tip="The extension needs explicit permission to make requests to the self hosted API"
180
>
181
- Grant Permission
182
- </button>
+ <button
+ onClick={requestHostPermission}
+ disabled={isUrlPermissionGranted}
183
+ className="btn btn-ghost text-white"
184
+ >
185
+ Grant Permission
186
+ </button>
187
+ </div>
188
)}
189
<button
190
onClick={handleSave}
0 commit comments