joven-health-mike / juno-react

A virtual therapy platform designed for K-12 schools.
0 stars 0 forks source link

SchoolDetails doesn't display all info #76

Closed joven-health-mike closed 1 year ago

joven-health-mike commented 1 year ago
  1. Click the expand button on a school

Result - SchoolDetails component only displays email, phone, and address.

The model for a School contains the following information, all of which should be displayed in the SchoolDetails component:

model School {
  name         String
  address      String?
  state        String?
  city         String?
  zip          String?
  primaryEmail String?
  primaryPhone String?
}