|  | @@ -85,7 +85,7 @@ func (b *Box) Bottom() string {
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  func AlertBox(text string, style int) []string {
 | 
	
		
			
				|  |  |  	var results []string
 | 
	
		
			
				|  |  | -	b := Box{Width: len(text), Style: style}
 | 
	
		
			
				|  |  | +	b := Box{Width: StringLen(text), Style: style}
 | 
	
		
			
				|  |  |  	results = append(results, b.Top())
 | 
	
		
			
				|  |  |  	results = append(results, b.Row(text))
 | 
	
		
			
				|  |  |  	results = append(results, b.Bottom())
 |