Mercurial > public > lazybear
diff LazyBear/Views/Search/CompanyList.swift @ 438:7f2a24a774eb
Implement CompanyView networking
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Sun, 20 Jun 2021 13:20:19 +0200 |
parents | c78d5b5b3bda |
children | ffbb1dbab531 |
line wrap: on
line diff
--- a/LazyBear/Views/Search/CompanyList.swift Sun Jun 20 12:58:52 2021 +0200 +++ b/LazyBear/Views/Search/CompanyList.swift Sun Jun 20 13:20:19 2021 +0200 @@ -12,9 +12,9 @@ var body: some View { List(searchResult, id: \.self) { company in - NavigationLink(destination: CompanyView(symbol: company.symbol!)) { +// NavigationLink(destination: CompanyView(symbol: company.symbol!)) { SearchedCompanyItem(company: company) - } +// } } } }