[sandbox] Fix CI

Signed-off-by: Maksym Pavlenko <pavlenko.maksym@gmail.com>
This commit is contained in:
Maksym Pavlenko
2022-03-20 15:03:53 -07:00
parent b7a36950f6
commit de49745723
5 changed files with 62 additions and 62 deletions

View File

@@ -95,8 +95,8 @@ func (s *sandboxLocal) List(ctx context.Context, in *api.StoreListRequest, _ ...
}
list := make([]types.Sandbox, len(resp))
for i, item := range resp {
list[i] = sandbox.ToProto(&item)
for i := range resp {
list[i] = sandbox.ToProto(&resp[i])
}
return &api.StoreListResponse{List: list}, nil