react-native-resource-calendar 1.1.5 → 1.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1274,13 +1274,13 @@ var EventBlocks = React19__namespace.default.memo(({
1274
1274
  );
1275
1275
  const Renderer = eventRenderer;
1276
1276
  return events?.map(
1277
- (evt) => {
1277
+ (evt, index) => {
1278
1278
  const selected = isEventSelected?.(evt) ?? false;
1279
1279
  const disabled = isEventDisabled?.(evt) ?? false;
1280
1280
  return /* @__PURE__ */ React19__namespace.default.createElement(
1281
1281
  Renderer,
1282
1282
  {
1283
- key: `${evt.id}`,
1283
+ key: `${evt.from}-${evt.to}-${index}`,
1284
1284
  event: evt,
1285
1285
  onLongPress,
1286
1286
  onPress,