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

Fix broken paths #82

Merged
merged 4 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ yarn-error.log*
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
!.yarn/versions

.vscode
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"cSpell.words": ["lukso"]
"cSpell.words": ["lukso", "lyxe"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's please not commit personal configuration files

Can you add .vscode folder to gitignore?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure 👍 Didn't know I was doing it 😅

}
2 changes: 1 addition & 1 deletion docs/general/l14-and-lyxe/migration/supported-wallets.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ You can also check our [Hardware Wallet](docs/general/supported-wallets/hardware

## How to store LYX?

You can store LYX using the [Universal Profile Browser Extension](https://docs.lukso.tech/install-up-browser-extension) or any Ethereum-compatible wallet or hardware wallet. Further details can be found on the [Wallet Support Page](#TODO).
You can store LYX using the [Universal Profile Browser Extension](https://docs.lukso.tech/install-up-browser-extension) or any Ethereum-compatible wallet or hardware wallet.

:::caution Custom Network

Expand Down
2 changes: 1 addition & 1 deletion docs/general/l14-and-lyxe/migration/transaction-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ If you want to see the LYX balance displayed in your wallet, you can add LUKSO t

## What can I do when my transaction status stalls?

The migration transaction might be correctly executed on Ethereum and LUKSO, but the status is not updated on the [migration application](https://migrate.lukso.network/) in the browser. If you want to send a new transaction and [already verified that the transaction has been executed](#how-can-i-see-my-transaction-and-lyx), please reset [your browser history](https://support.google.com/accounts/answer/32050?hl=en&co=GENIE.Platform%3DDesktop) and re-open the page. You will be brought to the home screen again without any pending state.
The migration transaction might be correctly executed on Ethereum and LUKSO, but the status is not updated on the [migration application](https://migrate.lukso.network/) in the browser. If you want to send a new transaction and already verified that the transaction has been executed, please reset [your browser history](https://support.google.com/accounts/answer/32050?hl=en&co=GENIE.Platform%3DDesktop) and re-open the page. You will be brought to the home screen again without any pending state.
44 changes: 25 additions & 19 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,37 +18,43 @@ export default {
{
redirects: [
// General links to products page

{
from: '/extension/',
to: '/general/getting-started/Extension/introduction',
},
{
from: '/migration/',
from: '/migration',
to: '/general/l14-and-lyxe/migration/introduction',
},
{
from: '/migration/incidents/may-2024',
to: '/general/l14-and-lyxe/migration/incidents/may',
},
{
from: '/general/',
to: '/general/getting-started',
from: '/general',
to: '/general/introduction',
},

// Outdated and updated pages
// {
// from: '/extension/feature-requests',
// to: '/general/feature-requests',
// },
// {
// from: '/general/common-errors',
// to: '/general/extension/common-errors',
// },
// {
// from: '/migration/incidents/delay-incident',
// to: '/general/migration/incidents/january',
// },

{
from: '/general/common-errors',
to: '/general/getting-started/Extension/common-errors',
},
{
from: '/migration/incidents/delay-incident',
to: '/general/l14-and-lyxe/migration/incidents/january',
},
],
createRedirects(existingPath) {
if (existingPath.startsWith('/general/getting-started/Extension/')) {
return [
existingPath.replace(
'/general/getting-started/Extension',
'/extension',
),
existingPath,
];
}
return undefined; // Return a falsy value: no redirect created
},
},
],
],
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
"prettier:fix": "prettier \"src/**/*.js\" \"docs/**/*.md\" --write"
},
"dependencies": {
"@docusaurus/core": "3.1.0",
"@docusaurus/plugin-client-redirects": "3.1.0",
"@docusaurus/plugin-google-gtag": "3.1.0",
"@docusaurus/preset-classic": "3.1.0",
"@docusaurus/core": "^3.3.2",
"@docusaurus/plugin-client-redirects": "^3.3.2",
"@docusaurus/plugin-google-gtag": "^3.3.2",
"@docusaurus/preset-classic": "^3.3.2",
"@mdx-js/react": "^3.0.0",
"@svgr/webpack": "^8.1.0",
"clsx": "^2.1.0",
Expand All @@ -31,8 +31,8 @@
"url-loader": "^4.1.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.1.0",
"@docusaurus/types": "3.1.0"
"@docusaurus/module-type-aliases": "^3.3.2",
"@docusaurus/types": "^3.3.2"
},
"browserslist": {
"production": [
Expand Down
3 changes: 2 additions & 1 deletion src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ html[data-theme='dark'] {
.admonition_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-Layout-styles-module {
margin-bottom: 2em !important;
}
.admonition_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-Layout-styles-module p {
.admonition_node_modules-\@docusaurus-theme-classic-lib-theme-Admonition-Layout-styles-module
p {
margin: 0 0 1rem;
}

Expand Down
Loading
Loading