@@ -41,7 +41,7 @@ interface BrandInfo {
4141 icon : ComponentType < SVGIconProps > ;
4242}
4343
44- export const brands : Record < Exclude < BrandKey , "studio" > , BrandInfo > & {
44+ export const Brands : Record < Exclude < BrandKey , "studio" > , BrandInfo > & {
4545 studio : { readonly color : string ; icon : ComponentType < SVGIconProps > } ;
4646} = {
4747 canvas : { color : "#D24E21" , icon : CanvasBug } ,
@@ -51,7 +51,7 @@ export const brands: Record<Exclude<BrandKey, "studio">, BrandInfo> & {
5151 parchment : { color : "#4279B6" , icon : ParchmentBug } ,
5252 studio : {
5353 get color ( ) {
54- return brands . canvas . color ;
54+ return Brands . canvas . color ;
5555 } ,
5656 icon : StudioBug ,
5757 } ,
@@ -69,8 +69,8 @@ const RawFeatures: RawFeaturesType = {
6969 label : "Grading Assistance" ,
7070 } ,
7171 {
72- color : brands . studio . color ,
73- icon : brands . studio . icon ,
72+ color : Brands . studio . color ,
73+ icon : Brands . studio . icon ,
7474 id : "studio_captioning" ,
7575 label : "Canvas Studio Enhanced Captioning" ,
7676 } ,
@@ -81,8 +81,8 @@ const RawFeatures: RawFeaturesType = {
8181 label : "Quiz Item Generator" ,
8282 } ,
8383 {
84- color : brands . ignite . color ,
85- icon : brands . ignite . icon ,
84+ color : Brands . ignite . color ,
85+ icon : Brands . ignite . icon ,
8686 id : "accessibility_remediation" ,
8787 label : "Content Accessibility Remediation" ,
8888 } ,
@@ -93,8 +93,8 @@ const RawFeatures: RawFeaturesType = {
9393 label : "Ignite Agent" ,
9494 } ,
9595 {
96- color : brands . canvas . color ,
97- icon : brands . canvas . icon ,
96+ color : Brands . canvas . color ,
97+ icon : Brands . canvas . icon ,
9898 id : "canvas_career" ,
9999 label : "Canvas Career" ,
100100 } ,
@@ -109,8 +109,8 @@ const Features: FeaturesType = Object.fromEntries(
109109 . sort ( ( a , b ) => a . label . localeCompare ( b . label ) )
110110 . map ( ( feature ) => ( {
111111 ...feature ,
112- color : feature . color ?? brands . ignite . color ,
113- icon : feature . icon ?? brands . ignite . icon ,
112+ color : feature . color ?? Brands . ignite . color ,
113+ icon : feature . icon ?? Brands . ignite . icon ,
114114 } ) ) ,
115115 ] ) ,
116116) ;
0 commit comments