Skip to content

Commit

Permalink
fix: decode url for quick app settings
Browse files Browse the repository at this point in the history
  • Loading branch information
pawanpaudel93 committed Jul 5, 2024
1 parent 0f0a669 commit 01ae303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/popup/settings/apps/[url]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import { ToggleSwitch } from "~routes/popup/subscriptions/subscriptionDetails";

export default function AppSettings({ url }: Props) {
// app settings
const app = new Application(url);
const app = new Application(decodeURIComponent(url));
const [settings, updateSettings] = app.hook();
const arweave = new Arweave(defaultGateway);

Expand Down

0 comments on commit 01ae303

Please sign in to comment.