We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 636d4d5 commit 5451e0bCopy full SHA for 5451e0b
packages/components/src/PublicClient/PublicClient.tsx
@@ -22,6 +22,8 @@ function PublicClient(props: UsePelicanClientOptions) {
22
handleRefetchObject,
23
handleExplore,
24
handleDownload,
25
+ federationName,
26
+ namespaceName,
27
} = usePelicanClient(props);
28
29
return (
@@ -34,7 +36,12 @@ function PublicClient(props: UsePelicanClientOptions) {
34
36
onChange={handleRefetchObject}
35
37
loading={loading}
38
/>
- <ClientMetadata showDirectories={showDirectories} setShowDirectories={setShowDirectories} />
39
+ <ClientMetadata
40
+ federation={federationName}
41
+ namespace={namespaceName}
42
+ showDirectories={showDirectories}
43
+ setShowDirectories={setShowDirectories}
44
+ />
45
</Box>
46
47
<ObjectView
0 commit comments