chuangjinglu f65a02ccb7
fix: fix slice init length (#8707)
# Which Problems Are Solved

The intention here should be to initialize a slice with a capacity of
len(queriedOrgs.Orgs) rather than initializing the length of this slice.

the online demo: https://go.dev/play/p/vNUPNjdb2gJ

# How the Problems Are Solved

use `processedOrgs := make([]string, 0, len(queriedOrgs.Orgs))`

# Additional Changes

None

# Additional Context

None

Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
(cherry picked from commit 69e9926bcc9f766aef5cb34babd94ef627337835)
2024-11-15 09:33:15 +01:00
..
2024-10-28 08:29:34 +00:00
2024-11-15 09:33:15 +01:00
2020-11-26 09:19:14 +01:00