[ci] format
This commit is contained in:
parent
d8e796e960
commit
b3c857adbd
1 changed files with 3 additions and 1 deletions
|
@ -7,7 +7,9 @@ type Props = {
|
|||
};
|
||||
|
||||
const { currentPage } = Astro.props as Props;
|
||||
const currentPageMatch = currentPage.endsWith('/') ? currentPage.slice(1, -1) : currentPage.slice(1);
|
||||
const currentPageMatch = currentPage.endsWith('/')
|
||||
? currentPage.slice(1, -1)
|
||||
: currentPage.slice(1);
|
||||
const langCode = getLanguageFromURL(currentPage);
|
||||
const sidebar = SIDEBAR[langCode];
|
||||
---
|
||||
|
|
Loading…
Reference in a new issue