@@ -22,7 +22,11 @@ export const StoreConfigInnerDialog = ({
2222 < h1 > Store Config</ h1 >
2323 </ Heading >
2424 < div style = { { display : "flex" } } >
25- < DataWell label = "Access" subLabel = { accessConfig . sublabel } >
25+ < DataWell
26+ style = { { paddingLeft : "0" } }
27+ label = "Access"
28+ subLabel = { accessConfig . sublabel }
29+ >
2630 { accessConfig . type } { accessConfig . type === "public" ? "⚠️" : null }
2731 </ DataWell >
2832 { storageLimit && (
@@ -39,36 +43,36 @@ export const StoreConfigInnerDialog = ({
3943 ) }
4044 </ div >
4145
42- { userHasAccessToStore
43- ? "You have access to this store"
44- : "You don't have access to this store" }
46+ { userHasAccessToStore ? null : "You don't have access to this store" }
4547
4648 < Heading >
4749 < h1 > Your private webhooks stores</ h1 >
4850 </ Heading >
4951
50- < List >
51- { availableStores . length > 0
52- ? availableStores . map ( ( store ) => (
53- < List . Item >
54- < Link >
55- < a href = { store . url } > { store . display } </ a >
56- </ Link >
57- </ List . Item >
58- ) )
59- : null }
60- </ List >
52+ < div style = { { padding : "0 24px" } } >
53+ < List type = "bulleted" >
54+ { availableStores . length > 0
55+ ? availableStores . map ( ( store ) => (
56+ < List . Item >
57+ < Link >
58+ < a href = { store . url } > { store . display } </ a >
59+ </ Link >
60+ </ List . Item >
61+ ) )
62+ : null }
63+ </ List >
64+ </ div >
6165
6266 < P >
63- < Link >
67+ < Link appearance = { Link . appearances . subtle } >
6468 < a href = "https://www.openwebhook.io/docs/intro/#authentication" >
6569 WebhookStore access documentation
6670 </ a >
6771 </ Link >
6872 </ P >
6973
7074 < P >
71- < Link >
75+ < Link appearance = { Link . appearances . subtle } >
7276 < a href = "https://www.openwebhook.io/docs/intro/#%EF%B8%8F-public-organisation-membership" >
7377 You don't see your organisation here?
7478 </ a >
0 commit comments