This is an automated email from the ASF dual-hosted git repository. yuqi4733 pushed a commit to branch internal-main in repository https://gitbox.apache.org/repos/asf/gravitino.git
commit 3586d7613d90013f99d0ed9bbd3a76d0232eaa60 Author: Qian Xia <[email protected]> AuthorDate: Wed Jan 14 10:31:21 2026 +0800 [#110] web(lint): fix web lint issue --- web/web/src/app/metalakes/metalake/rightContent/MetalakePath.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/web/src/app/metalakes/metalake/rightContent/MetalakePath.js b/web/web/src/app/metalakes/metalake/rightContent/MetalakePath.js index f75e758b23..7a0914f3f5 100644 --- a/web/web/src/app/metalakes/metalake/rightContent/MetalakePath.js +++ b/web/web/src/app/metalakes/metalake/rightContent/MetalakePath.js @@ -38,9 +38,11 @@ const TextWrapper = styled(Typography)(({ theme }) => ({ const Text = props => { return <TextWrapper component='span' {...props} /> } + const MetalakePath = props => { const searchParams = useSearchParams() const store = useAppSelector(state => state.metalakes) + const routeParams = { metalake: searchParams.get('metalake'), catalog: searchParams.get('catalog'),
