Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Elaborate in Warning message #199

Merged
merged 1 commit into from
Feb 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions components/MigrationWarning.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,19 @@ export default function MigrationWarning() {
<Alert className="mx-auto my-4 max-w-md border-yellow-300 bg-fuchsia-900">
<AlertTitle>Warning!</AlertTitle>
<AlertDescription className="mt-3">
This app will no longer be found at this url from March the 1st.
This app will no longer be available at this URL from March 1st, 2024.
</AlertDescription>
<AlertDescription className="mt-3">
It will instead be accessible from{" "}
A new instance is deployed at{" "}
<a href="https://multisig.confio.run" target="_blank" className="text-blue-400">
https://multisig.confio.run
</a>
.
, connecting to a new database. You can start using this instance for new signing requests.
Re-importing multisigs by address or public keys may be needed.
</AlertDescription>
<AlertDescription className="mt-3">
Any pending transactions on this app will be lost when that time arrives.
Any pending transactions on this app will be lost when that time arrives. In the meantime,
both deployments can be used but no data is shared between them.
</AlertDescription>
</Alert>
);
Expand Down
Loading