### Description A stored property with an initializer, e.g., ```swift static let defaultColor: Color = .red ``` might be better off as a computed property: ```swift static var defaultColor: Color { .red } ``` or vice versa. Let's create a pair of code actions to go from the first to second or vice-versa.