Skip to content

Commit

Permalink
final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj committed Apr 18, 2023
1 parent 517a3d2 commit 9ed3c1b
Show file tree
Hide file tree
Showing 81 changed files with 274 additions and 233 deletions.
6 changes: 5 additions & 1 deletion docs/pages/base/react-badge/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ export const getStaticPaths = () => {
};

export const getStaticProps = () => {
const BadgeApiReq = require.context('docs/translations/api-docs/badge', false, /badge.*.json$/);
const BadgeApiReq = require.context(
'docs/translations/api-docs-base/badge',
false,
/badge.*.json$/,
);
const BadgeApiDescriptions = mapApiPageTranslations(BadgeApiReq);

const useBadgeApiReq = require.context(
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/base/react-button/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const ButtonApiReq = require.context(
'docs/translations/api-docs/button',
'docs/translations/api-docs-base/button',
false,
/button.*.json$/,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const ClickAwayListenerApiReq = require.context(
'docs/translations/api-docs/click-away-listener',
'docs/translations/api-docs-base/click-away-listener',
false,
/click-away-listener.*.json$/,
);
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/base/react-focus-trap/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const FocusTrapApiReq = require.context(
'docs/translations/api-docs/focus-trap',
'docs/translations/api-docs-base/focus-trap',
false,
/focus-trap.*.json$/,
);
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/base/react-form-control/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const FormControlApiReq = require.context(
'docs/translations/api-docs/form-control',
'docs/translations/api-docs-base/form-control',
false,
/form-control.*.json$/,
);
Expand Down
6 changes: 5 additions & 1 deletion docs/pages/base/react-input/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ export const getStaticPaths = () => {
};

export const getStaticProps = () => {
const InputApiReq = require.context('docs/translations/api-docs/input', false, /input.*.json$/);
const InputApiReq = require.context(
'docs/translations/api-docs-base/input',
false,
/input.*.json$/,
);
const InputApiDescriptions = mapApiPageTranslations(InputApiReq);

const useInputApiReq = require.context(
Expand Down
4 changes: 2 additions & 2 deletions docs/pages/base/react-menu/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ export const getStaticPaths = () => {
};

export const getStaticProps = () => {
const MenuApiReq = require.context('docs/translations/api-docs/menu', false, /menu.*.json$/);
const MenuApiReq = require.context('docs/translations/api-docs-base/menu', false, /menu.*.json$/);
const MenuApiDescriptions = mapApiPageTranslations(MenuApiReq);

const MenuItemApiReq = require.context(
'docs/translations/api-docs/menu-item',
'docs/translations/api-docs-base/menu-item',
false,
/menu-item.*.json$/,
);
Expand Down
6 changes: 5 additions & 1 deletion docs/pages/base/react-modal/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ export const getStaticPaths = () => {
};

export const getStaticProps = () => {
const ModalApiReq = require.context('docs/translations/api-docs/modal', false, /modal.*.json$/);
const ModalApiReq = require.context(
'docs/translations/api-docs-base/modal',
false,
/modal.*.json$/,
);
const ModalApiDescriptions = mapApiPageTranslations(ModalApiReq);

return {
Expand Down
6 changes: 5 additions & 1 deletion docs/pages/base/react-no-ssr/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ export const getStaticPaths = () => {
};

export const getStaticProps = () => {
const NoSsrApiReq = require.context('docs/translations/api-docs/no-ssr', false, /no-ssr.*.json$/);
const NoSsrApiReq = require.context(
'docs/translations/api-docs-base/no-ssr',
false,
/no-ssr.*.json$/,
);
const NoSsrApiDescriptions = mapApiPageTranslations(NoSsrApiReq);

return {
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/base/react-popper/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const PopperApiReq = require.context(
'docs/translations/api-docs/popper',
'docs/translations/api-docs-base/popper',
false,
/popper.*.json$/,
);
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/base/react-portal/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const PortalApiReq = require.context(
'docs/translations/api-docs/portal',
'docs/translations/api-docs-base/portal',
false,
/portal.*.json$/,
);
Expand Down
6 changes: 3 additions & 3 deletions docs/pages/base/react-select/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const OptionApiReq = require.context(
'docs/translations/api-docs/option',
'docs/translations/api-docs-base/option',
false,
/option.*.json$/,
);
const OptionApiDescriptions = mapApiPageTranslations(OptionApiReq);

const OptionGroupApiReq = require.context(
'docs/translations/api-docs/option-group',
'docs/translations/api-docs-base/option-group',
false,
/option-group.*.json$/,
);
const OptionGroupApiDescriptions = mapApiPageTranslations(OptionGroupApiReq);

const SelectApiReq = require.context(
'docs/translations/api-docs/select',
'docs/translations/api-docs-base/select',
false,
/select.*.json$/,
);
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/base/react-slider/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const SliderApiReq = require.context(
'docs/translations/api-docs/slider',
'docs/translations/api-docs-base/slider',
false,
/slider.*.json$/,
);
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/base/react-snackbar/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const SnackbarApiReq = require.context(
'docs/translations/api-docs/snackbar',
'docs/translations/api-docs-base/snackbar',
false,
/snackbar.*.json$/,
);
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/base/react-switch/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const SwitchApiReq = require.context(
'docs/translations/api-docs/switch',
'docs/translations/api-docs-base/switch',
false,
/switch.*.json$/,
);
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/base/react-table-pagination/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const TablePaginationApiReq = require.context(
'docs/translations/api-docs/table-pagination',
'docs/translations/api-docs-base/table-pagination',
false,
/table-pagination.*.json$/,
);
Expand Down
8 changes: 4 additions & 4 deletions docs/pages/base/react-tabs/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,21 @@ export const getStaticPaths = () => {
};

export const getStaticProps = () => {
const TabApiReq = require.context('docs/translations/api-docs/tab', false, /tab.*.json$/);
const TabApiReq = require.context('docs/translations/api-docs-base/tab', false, /tab.*.json$/);
const TabApiDescriptions = mapApiPageTranslations(TabApiReq);

const TabPanelApiReq = require.context(
'docs/translations/api-docs/tab-panel',
'docs/translations/api-docs-base/tab-panel',
false,
/tab-panel.*.json$/,
);
const TabPanelApiDescriptions = mapApiPageTranslations(TabPanelApiReq);

const TabsApiReq = require.context('docs/translations/api-docs/tabs', false, /tabs.*.json$/);
const TabsApiReq = require.context('docs/translations/api-docs-base/tabs', false, /tabs.*.json$/);
const TabsApiDescriptions = mapApiPageTranslations(TabsApiReq);

const TabsListApiReq = require.context(
'docs/translations/api-docs/tabs-list',
'docs/translations/api-docs-base/tabs-list',
false,
/tabs-list.*.json$/,
);
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/base/react-textarea-autosize/[docsTab]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const getStaticPaths = () => {

export const getStaticProps = () => {
const TextareaAutosizeApiReq = require.context(
'docs/translations/api-docs/textarea-autosize',
'docs/translations/api-docs-base/textarea-autosize',
false,
/textarea-autosize.*.json$/,
);
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/joy-ui/api/menu.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"muiName": "JoyMenu",
"forwardsRefTo": "HTMLUListElement",
"filename": "/packages/mui-joy/src/Menu/Menu.tsx",
"inheritance": { "component": "PopperUnstyled", "pathname": "/base/api/popper-unstyled/" },
"inheritance": { "component": "Popper", "pathname": "/base/api/popper/" },
"demos": "<ul><li><a href=\"/joy-ui/react-menu/\">Menu</a></li></ul>",
"cssComponent": false
}
130 changes: 65 additions & 65 deletions docs/public/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -299,60 +299,60 @@ https://v4.material-ui.com/* https://v4.mui.com/:splat 301!
/api/click-away-listener/ /base/api/click-away-listener/ 301
/pt/api/click-away-listener/ /pt/base/api/click-away-listener/ 301
/zh/api/click-away-listener/ /zh/base/api/click-away-listener/ 301
/api/input-unstyled/ /base/react-input/components-api/#input-unstyled 301
/pt/api/input-unstyled/ /pt/base/react-input/components-api/#input-unstyled 301
/zh/api/input-unstyled/ /zh/base/react-input/components-api/#input-unstyled 301
/api/input/ /base/react-input/components-api/#input 301
/pt/api/input/ /pt/base/react-input/components-api/#input 301
/zh/api/input/ /zh/base/react-input/components-api/#input 301
/api/no-ssr/ /base/api/no-ssr/ 301
/pt/api/no-ssr/ /pt/base/api/no-ssr/ 301
/zh/api/no-ssr/ /zh/base/api/no-ssr/ 301
/api/form-control-unstyled/ /base/react-form-control/components-api/#form-control-unstyled 301
/pt/api/form-control-unstyled/ /pt/base/react-form-control/components-api/#form-control-unstyled 301
/zh/api/form-control-unstyled/ /zh/base/react-form-control/components-api/#form-control-unstyled 301
/api/badge-unstyled/ /base/react-badge/components-api/#badge-unstyled 301
/pt/api/badge-unstyled/ /pt/base/react-badge/components-api/#badge-unstyled 301
/zh/api/badge-unstyled/ /zh/base/react-badge/components-api/#badge-unstyled 301
/api/backdrop-unstyled/ /base/react-modal/ 301
/pt/api/backdrop-unstyled/ /pt/base/react-modal/ 301
/zh/api/backdrop-unstyled/ /zh/base/react-modal/ 301
/api/switch-unstyled/ /base/react-switch/components-api/#switch-unstyled 301
/pt/api/switch-unstyled/ /pt/base/react-switch/components-api/#switch-unstyled 301
/zh/api/switch-unstyled/ /zh/base/react-switch/components-api/#switch-unstyled 301
/api/slider-unstyled/ /base/react-slider/components-api/#slider-unstyled 301
/pt/api/slider-unstyled/ /pt/base/react-slider/components-api/#slider-unstyled 301
/zh/api/slider-unstyled/ /zh/base/react-slider/components-api/#slider-unstyled 301
/api/button-unstyled/ /base/react-button/components-api/#button-unstyled 301
/pt/api/button-unstyled/ /pt/base/react-button/components-api/#button-unstyled 301
/zh/api/button-unstyled/ /zh/base/react-button/components-api/#button-unstyled 301
/api/form-control/ /base/react-form-control/components-api/#form-control 301
/pt/api/form-control/ /pt/base/react-form-control/components-api/#form-control 301
/zh/api/form-control/ /zh/base/react-form-control/components-api/#form-control 301
/api/badge/ /base/react-badge/components-api/#badge 301
/pt/api/badge/ /pt/base/react-badge/components-api/#badge 301
/zh/api/badge/ /zh/base/react-badge/components-api/#badge 301
/api/backdrop/ /base/react-modal/ 301
/pt/api/backdrop/ /pt/base/react-modal/ 301
/zh/api/backdrop/ /zh/base/react-modal/ 301
/api/switch/ /base/react-switch/components-api/#switch 301
/pt/api/switch/ /pt/base/react-switch/components-api/#switch 301
/zh/api/switch/ /zh/base/react-switch/components-api/#switch 301
/api/slider/ /base/react-slider/components-api/#slider 301
/pt/api/slider/ /pt/base/react-slider/components-api/#slider 301
/zh/api/slider/ /zh/base/react-slider/components-api/#slider 301
/api/button/ /base/react-button/components-api/#button 301
/pt/api/button/ /pt/base/react-button/components-api/#button 301
/zh/api/button/ /zh/base/react-button/components-api/#button 301
/api/textarea-autosize/ /base/api/textarea-autosize/ 301
/pt/api/textarea-autosize/ /pt/base/api/textarea-autosize/ 301
/zh/api/textarea-autosize/ /zh/base/api/textarea-autosize/ 301
/api/modal-unstyled/ /base/react-modal/components-api/#modal-unstyled 301
/pt/api/modal-unstyled/ /pt/base/react-modal/components-api/#modal-unstyled 301
/zh/api/modal-unstyled/ /zh/base/react-modal/components-api/#modal-unstyled 301
/api/option-group-unstyled/ /base/react-select/components-api/#option-group-unstyled 301
/pt/api/option-group-unstyled/ /pt/base/react-select/components-api/#option-group-unstyled 301
/zh/api/option-group-unstyled/ /zh/base/react-select/components-api/#option-group-unstyled 301
/api/modal/ /base/react-modal/components-api/#modal 301
/pt/api/modal/ /pt/base/react-modal/components-api/#modal 301
/zh/api/modal/ /zh/base/react-modal/components-api/#modal 301
/api/option-group/ /base/react-select/components-api/#option-group 301
/pt/api/option-group/ /pt/base/react-select/components-api/#option-group 301
/zh/api/option-group/ /zh/base/react-select/components-api/#option-group 301
/api/portal/ /base/react-portal/components-api/#portal 301
/pt/api/portal/ /pt/base/react-portal/components-api/#portal 301
/zh/api/portal/ /zh/base/react-portal/components-api/#portal 301
/api/menu-item-unstyled/ /base/react-menu/components-api/#menu-item-unstyled 301
/pt/api/menu-item-unstyled/ /pt/base/react-menu/components-api/#menu-item-unstyled 301
/zh/api/menu-item-unstyled/ /zh/base/react-menu/components-api/#menu-item-unstyled 301
/api/tabs-list-unstyled/ /base/react-tabs/components-api/#tabs-list-unstyled 301
/pt/api/tabs-list-unstyled/ /pt/base/react-tabs/components-api/#tabs-list-unstyled 301
/zh/api/tabs-list-unstyled/ /zh/base/react-tabs/components-api/#tabs-list-unstyled 301
/api/menu-unstyled/ /base/react-menu/components-api/#menu-unstyled 301
/pt/api/menu-unstyled/ /pt/base/react-menu/components-api/#menu-unstyled 301
/zh/api/menu-unstyled/ /zh/base/react-menu/components-api/#menu-unstyled 301
/api/tab-panel-unstyled/ /base/react-tabs/components-api/#tab-panel-unstyled 301
/pt/api/tab-panel-unstyled/ /pt/base/react-tabs/components-api/#tab-panel-unstyled 301
/zh/api/tab-panel-unstyled/ /zh/base/react-tabs/components-api/#tab-panel-unstyled 301
/api/popper-unstyled/ /base/react-popper/components-api/#popper-unstyled 301
/pt/api/popper-unstyled/ /pt/base/react-popper/components-api/#popper-unstyled 301
/zh/api/popper-unstyled/ /zh/base/react-popper/components-api/#popper-unstyled 301
/api/select-unstyled/ /base/react-select/components-api/#select-unstyled 301
/pt/api/select-unstyled/ /pt/base/react-select/components-api/#select-unstyled 301
/zh/api/select-unstyled/ /zh/base/react-select/components-api/#select-unstyled 301
/api/menu-item/ /base/react-menu/components-api/#menu-item 301
/pt/api/menu-item/ /pt/base/react-menu/components-api/#menu-item 301
/zh/api/menu-item/ /zh/base/react-menu/components-api/#menu-item 301
/api/tabs-list/ /base/react-tabs/components-api/#tabs-list 301
/pt/api/tabs-list/ /pt/base/react-tabs/components-api/#tabs-list 301
/zh/api/tabs-list/ /zh/base/react-tabs/components-api/#tabs-list 301
/api/menu/ /base/react-menu/components-api/#menu 301
/pt/api/menu/ /pt/base/react-menu/components-api/#menu 301
/zh/api/menu/ /zh/base/react-menu/components-api/#menu 301
/api/tab-panel/ /base/react-tabs/components-api/#tab-panel 301
/pt/api/tab-panel/ /pt/base/react-tabs/components-api/#tab-panel 301
/zh/api/tab-panel/ /zh/base/react-tabs/components-api/#tab-panel 301
/api/popper/ /base/react-popper/components-api/#popper 301
/pt/api/popper/ /pt/base/react-popper/components-api/#popper 301
/zh/api/popper/ /zh/base/react-popper/components-api/#popper 301
/api/select/ /base/react-select/components-api/#select 301
/pt/api/select/ /pt/base/react-select/components-api/#select 301
/zh/api/select/ /zh/base/react-select/components-api/#select 301
/api/* /material-ui/api/:splat 301
/zh/api/* /zh/material-ui/api/:splat 301
/pt/api/* /pt/material-ui/api/:splat 301
Expand Down Expand Up @@ -416,33 +416,33 @@ https://v4.material-ui.com/* https://v4.mui.com/:splat 301!
/pt/* /:splat 301
/zh/* /:splat 301
# 2023
/base/api/badge-unstyled/ /base/react-badge/components-api/#badge-unstyled 301
/base/api/button-unstyled/ /base/react-button/components-api/#button-unstyled 301
/base/api/badge/ /base/react-badge/components-api/#badge 301
/base/api/button/ /base/react-button/components-api/#button 301
/base/api/click-away-listener/ /base/react-click-away-listener/components-api/#click-away-listener 301
/base/api/focus-trap/ /base/react-focus-trap/components-api/#focus-trap 301
/base/api/form-control-unstyled/ /base/react-form-control/components-api/#form-control-unstyled 301
/base/api/input-unstyled/ /base/react-input/components-api/#input-unstyled 301
/base/api/menu-item-unstyled/ /base/react-menu/components-api/#menu-item-unstyled 301
/base/api/menu-unstyled/ /base/react-menu/components-api/#menu-unstyled 301
/base/api/modal-unstyled/ /base/react-modal/components-api/#modal-unstyled 301
/base/api/form-control/ /base/react-form-control/components-api/#form-control 301
/base/api/input/ /base/react-input/components-api/#input 301
/base/api/menu-item/ /base/react-menu/components-api/#menu-item 301
/base/api/menu/ /base/react-menu/components-api/#menu 301
/base/api/modal/ /base/react-modal/components-api/#modal 301
/base/api/no-ssr/ /base/react-no-ssr/components-api/#no-ssr 301
/base/api/option-group-unstyled/ /base/react-select/components-api/#option-group-unstyled 301
/base/api/option-unstyled/ /base/react-select/components-api/#option-unstyled 301
/base/api/popper-unstyled/ /base/react-popper/components-api/#popper-unstyled 301
/base/api/option-group/ /base/react-select/components-api/#option-group 301
/base/api/option/ /base/react-select/components-api/#option 301
/base/api/popper/ /base/react-popper/components-api/#popper 301
/base/api/portal/ /base/react-portal/components-api/#portal 301
/base/api/select-unstyled/ /base/react-select/components-api/#select-unstyled 301
/base/api/slider-unstyled/ /base/react-slider/components-api/#slider-unstyled 301
/base/api/snackbar-unstyled/ /base/react-snackbar/components-api/#snackbar-unstyled 301
/base/api/switch-unstyled/ /base/react-switch/components-api/#switch-unstyled 301
/base/api/table-pagination-unstyled/ /base/react-table-pagination/components-api/#table-pagination-unstyled 301
/base/api/tab-panel-unstyled/ /base/react-tabs/components-api/#tab-panel-unstyled 301
/base/api/tabs-list-unstyled/ /base/react-tabs/components-api/#tabs-list-unstyled 301
/base/api/tabs-unstyled/ /base/react-tabs/components-api/#tabs-unstyled 301
/base/api/tab-unstyled/ /base/react-tabs/components-api/#tab-unstyled 301
/base/api/select/ /base/react-select/components-api/#select 301
/base/api/slider/ /base/react-slider/components-api/#slider 301
/base/api/snackbar/ /base/react-snackbar/components-api/#snackbar 301
/base/api/switch/ /base/react-switch/components-api/#switch 301
/base/api/table-pagination/ /base/react-table-pagination/components-api/#table-pagination 301
/base/api/tab-panel/ /base/react-tabs/components-api/#tab-panel 301
/base/api/tabs-list/ /base/react-tabs/components-api/#tabs-list 301
/base/api/tabs/ /base/react-tabs/components-api/#tabs 301
/base/api/tab/ /base/react-tabs/components-api/#tab 301
/base/api/textarea-autosize/ /base/react-textarea-autosize/components-api/#textarea-autosize 301
/base/api/use-badge/ /base/react-badge/hooks-api/#use-badge 301
/base/api/use-button/ /base/react-button/hooks-api/#use-button 301
/base/api/use-form-control-unstyled-context/ /base/react-form-control/hooks-api/#use-form-control-unstyled-context 301
/base/api/use-form-control-context/ /base/react-form-control/hooks-api/#use-form-control-context 301
/base/api/use-input/ /base/react-input/hooks-api/#use-input 301
/base/api/use-menu/ /base/react-menu/hooks-api/#use-menu 301
/base/api/use-menu-item/ /base/react-menu/hooks-api/#use-menu-item 301
Expand Down
4 changes: 2 additions & 2 deletions docs/src/modules/utils/getUrlProduct.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ describe('getUrlProduct', () => {
});

it('get base', () => {
expect(getUrlProduct('/base/react-button-unstyled/')).to.equal('base');
expect(getUrlProduct('/zh/base/react-button-unstyled/')).to.equal('base');
expect(getUrlProduct('/base/react-button/')).to.equal('base');
expect(getUrlProduct('/zh/base/react-button/')).to.equal('base');
});

it('get joy-ui', () => {
Expand Down
Loading

0 comments on commit 9ed3c1b

Please sign in to comment.