File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
extensions/plugin-basic-ui/src Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ const LoadingSpinner: FC = () => {
66 return < div className = { css . spinner } /> ;
77} ;
88
9- export default LoadingSpinner ;
9+ export default LoadingSpinner ;
Original file line number Diff line number Diff line change @@ -191,7 +191,8 @@ async function organizeChangelogEntries(
191191 ( release ) =>
192192 release . type !== "none" &&
193193 packages . packages . some (
194- ( pkg ) => pkg . packageJson . name === release . name && ! pkg . packageJson . private ,
194+ ( pkg ) =>
195+ pkg . packageJson . name === release . name && ! pkg . packageJson . private ,
195196 ) ,
196197 ) ;
197198
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ const GLOBAL_VARS = {
4646 maxWidth : "modal-max-width" ,
4747 } ,
4848 edge : {
49- width : ' edge-width' ,
50- }
49+ width : " edge-width" ,
50+ } ,
5151} ;
5252
5353export const globalVars = createGlobalThemeContract (
@@ -97,7 +97,7 @@ const androidValues: GlobalVars = {
9797 } ,
9898 edge : {
9999 width : "1.25rem" ,
100- }
100+ } ,
101101} ;
102102
103103const cupertinoValues : GlobalVars = {
You can’t perform that action at this time.
0 commit comments