@@ -73,7 +73,7 @@ export const interpretMenuAction = async (state: AppState): Promise<void> => {
7373 }
7474 const actions = {
7575 about : async ( state : AppState ) : Promise < void > => {
76- await titleScreen ( "APP NAME " ) ;
76+ await titleScreen ( "___APP NAME___ " ) ;
7777 console . log (
7878 boxen ( chalk . yellow ( `Author: ` ) + "YOUR NAME" , blankBoxenStyle )
7979 ) ;
@@ -83,7 +83,7 @@ export const interpretMenuAction = async (state: AppState): Promise<void> => {
8383 state . menuActionEmitter . emit ( "actionCompleted" , state ) ;
8484 } ,
8585 option1 : async ( state : AppState ) : Promise < void > => {
86- await titleScreen ( "APP NAME " ) ;
86+ await titleScreen ( "___APP NAME___ " ) ;
8787 console . log ( "Option 1 Logic would take place here :)" ) ;
8888 console . log ( "" ) ;
8989
@@ -92,7 +92,7 @@ export const interpretMenuAction = async (state: AppState): Promise<void> => {
9292 state . menuActionEmitter . emit ( "actionCompleted" , state ) ;
9393 } ,
9494 option2 : async ( state : AppState ) : Promise < void > => {
95- await titleScreen ( "APP NAME " ) ;
95+ await titleScreen ( "___APP NAME___ " ) ;
9696 console . log ( "Option 2 Logic would take place here :)" ) ;
9797 console . log ( "" ) ;
9898
@@ -101,7 +101,7 @@ export const interpretMenuAction = async (state: AppState): Promise<void> => {
101101 state . menuActionEmitter . emit ( "actionCompleted" , state ) ;
102102 } ,
103103 option3 : async ( state : AppState ) : Promise < void > => {
104- await titleScreen ( "APP NAME " ) ;
104+ await titleScreen ( "___APP NAME___ " ) ;
105105 console . log ( "Option 3 Logic would take place here :)" ) ;
106106 console . log ( "" ) ;
107107
0 commit comments